security - Where are JWT tokens stored on the server and other related questions -


as title suggests, jwt tokens stored on server side? in database or in memeory? understand implementation can vary due different requirements, in general store it?

if want provide basic token authentication server, meaning upon receiving username , password via post request, return token. in case, how token generated basic algorithm work differently jwt token?

with token generated simple algorithm:

  1. it not contain payload
  2. its value not computed based on username , password, cannot rehashed meaningful

in case, there still value use jwt?

thanks!


Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -