You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After switching my CPU to a Ryzen 7 1700, calling await hash(password, 10); using bcrypt causes the process to exit with code 0. This issue does not occur with bcryptjs.
Steps to reproduce:
Use bcrypt to hash a password:
awaithash(password,10);
Observe that the process exits with code 0.
Switching to bcryptjs in my case resolves the issue.