Reputation: 31
I'm using Drf(django rest framework) for my back end development. I tried to use Knox-token for authentication and token generation. I new to this knox-token. I need to know is Knox token is safe are not?. I'm going to develop web based product. So the product must be safe with full secure. Can i use knox-token for my product?
Upvotes: 1
Views: 499
Reputation: 3
Knox provides an encrypted form of tokens before storing them in the database. This feature would not allow any hacker to have access even if the database is compromised.
Upvotes: 0