What can you do to make a hashed token database retrievable at a later date?
I have a table for single use tokens, and one of the columns is a token_digest which contains a bcrypt hash of the access token. Since the token_digest is a salted and hashed version of the plaintext token, I can’t just run a select agains… Continue reading What can you do to make a hashed token database retrievable at a later date?