So lets say I have this
var hashedApi = bcrypt.hashSync(req.body.api_token, 8);
Then I want to be able to later dehash the API token and use it later to verify a user. How would I go about dehashing the API token to use later? Thank you
So lets say I have this
var hashedApi = bcrypt.hashSync(req.body.api_token, 8);
Then I want to be able to later dehash the API token and use it later to verify a user. How would I go about dehashing the API token to use later? Thank you