Top "Bcrypt" questions

bcrypt is an implementation of the Blowfish cipher and a computationally-expensive hash function mostly used for password hashing.

Error installing bcrypt with pip on OS X: can't find ffi.h (libffi is installed)

I'm getting this error when trying to install bcrypt with pip. I have libffi installed in a couple places (the …

python macos pip bcrypt libffi
What is an alternative for bcrypt to use with node?

I have tried for days to get bcrypt installed on my windows machine with no luck. One of the dependencies (…

node.js cryptography bcrypt password-hash
Node bcrypt's compare always returns false

I am stumped trying to get my passwords to successfully compare with bcrypt using node. Maybe I missed something, but …

javascript node.js bcrypt
What are Salt Rounds and how are Salts stored in Bcrypt?

I'm trying to configure Bcrypt for a node app that I'm making and have several questions about salts that I …

hash passwords password-protection bcrypt salt
Trying to hash a password using bcrypt inside an async function

Following on from this question. I feel like I'm almost there, but my incomplete understanding of async is preventing me …

javascript node.js mongoose bcrypt
flask-bcrypt - ValueError: Invalid salt

I was finishing up a simple user login with Flask and flask-Bcrypt. However, when trying to login with a user …

python flask bcrypt
What is the safest way to store a password using Code Igniter?

I am using Code Igniter for my current project. As of now, I am using MD5 for password hashing, but …

codeigniter password-protection salt bcrypt password-hash
PASSWORD_DEFAULT vs PASSWORD_BCRYPT

What is the difference between PASSWORD_DEFAULT and PASSWORD_BCRYPT? Do they both use Blowfish encryption algorithm? What is cost …

php bcrypt blowfish php-password-hash
Password Encryption: PBKDF2 (using sha512 x 1000) vs Bcrypt

I've been reading about the Gawker incident and several articles have cropped up regarding only using bcrypt to hash passwords …

passwords hash password-protection bcrypt pbkdf2
Getting same hashed value while using BCryptPasswordEncoder

I am using spring security using BCryptPasswordEncoder. Now for change password what I need to do is to compare Existing …

spring-security bcrypt