i have to reset a password from a hash generated by bcrypt...
hash = $2a$11$Ro/Y5GnkI6v1DkewwZAcBeZY7Q2a9872NUGDuXXes4J5SWfEQGHvG
the problem is that hash have an slash... so in my router
app.get('/getHash/:hash',routes.getResetHash);
i get an 404 error! i think the problem is the slash between $Ro and Y5G in the hash because the hash try to search an url like this
app.get('/getHash/$2a$11$Ro/Y5GnkI6v1DkewwZAcBeZY7Q2a9872NUGDuXXes4J5SWfEQGHvG'.....
how can i stringify the hash... ???