Top "Bcrypt" questions

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

Hash Password in C#? Bcrypt/PBKDF2

I looked up msdn and other resources on how to do this but i came up with no clear solutions. …

c# .net hash passwords bcrypt
Why BCryptPasswordEncoder from Spring generate different outputs for same input?

I am using BCryptPasswordEncoder with Spring security. My expectation was that for the same input I will always get the …

java spring spring-security bcrypt
Compare passwords BcryptJS

So I'm trying to build a very basic user login. I'm trying to create a user, then login with those …

javascript node.js express bcrypt
How to use `bcrypt` algorithm within `encrypt` function in MySQL for verifying password?

I have bcrypted value($2y$10$zQaDT8hXM4pLmBdwN0xEseda/oKJAQKMKMzUrV8jbs6Epz28BXzBS) of password (qwe). But when I am …

mysql encryption bcrypt
"BCrypt::Errors::InvalidHash" when trying to sign in

I am trying to finish a project. I am working with user models. When I signup everything seems ok . But …

ruby-on-rails heroku bcrypt
How to compare plain text password to hashed password using bcrypt?

I would like to use bcrypt to hash passwords and later verify if a supplied password is correct. Hashing passwords …

python bcrypt
Bcrypt password hashing in Golang (compatible with Node.js)?

I set up a site with Node.js+passport for user authentication. Now I need to migrate to Golang, and …

node.js go bcrypt
Comparing passwords with crypt() in PHP

I need to get the basics of this function. The php.net documentation states, for the blowfish algorithm, that: Blowfish …

php encryption bcrypt
Do I need to store the salt with bcrypt?

bCrypt's javadoc has this code for how to encrypt a password: String pw_hash = BCrypt.hashpw(plain_password, BCrypt.gensalt()); …

java encryption passwords salt bcrypt
Bcrypt vs Hash in laravel

I want to create a function or something like a Cron that executes a link (in Laravel), with something like …

php laravel hash bcrypt