I am working with the bcrypt nodejs module.
I am satisfied with it to encrypt and compare passwords, but it seems impossible to decrypt it.
I am wondering:
- How do you encrypt/decrypt passwords with nodejs (which module or method are you using) ?
- Is there a trick to decrypt the passwords encoded with the
bcryptmodule ?
Thanks !