I have the following code to hash a password in nodejs
await bcrypt.hash("my-password", 12)
I would like to hash the same way in shell using openssl passwd
so it would be compatible with each-other. How is that possible?
Thanks
I have the following code to hash a password in nodejs
await bcrypt.hash("my-password", 12)
I would like to hash the same way in shell using openssl passwd
so it would be compatible with each-other. How is that possible?
Thanks