Top "Bcrypt" questions

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

BCrypt.checkpw() Invalid salt version exception

I'm trying to implement authentication using BCrypt, in my Play 2.1. Java application, but I'm getting Invalid salt version exception when …

java hibernate playframework-2.1 bcrypt jbcrypt
Using BCrypt with Sequelize Model

I'm trying to use the bcrypt-nodejs package with my sequelize model and was tring to follow a tutorial to incorporate …

node.js sequelize.js bcrypt
NodeJS: bcrypt vs native crypto

Can someone point out the differences between the two and example situations where use each? bcrypt looks great.

node.js cryptography bcrypt
How does node.bcrypt.js compare hashed and plaintext passwords without the salt?

From github: To hash a password: var bcrypt = require('bcrypt'); bcrypt.genSalt(10, function(err, salt) { bcrypt.hash("B4c0/\/", salt, …

node.js bcrypt
How to compare two encrypted(bcrypt) password in laravel

How to compare two bcrypt password $pass1 = '$2y$10$ooPG9s1lcwUGYv1nqeyNcO0ccYJf8hlhm5dJXy7xoamvgiczXHB7S'; And $pass2 = …

php laravel laravel-5 bcrypt
.net implementation of bcrypt

Does anyone know of a good implementation of bcrypt, I know this question has been asked before but it got …

.net bcrypt bcrypt.net
Bcrypt generates different hashes for the same input?

I just added a registration functionality to my new grails project. For testing it, I registered by giving an email …

grails bcrypt
bcrypt LoadError: Cannot load such file

I'm trying to set up a login function for my Rails app, I'm getting a bcrypt error message when I …

ruby-on-rails ruby ruby-on-rails-4 load bcrypt
Error compiling bcrypt - node.js

I'm trying to install bycrpt via npm install using Windows 7 Ultimate x64. This is my install log: D:\Dropbox\Projekte\…

node.js npm bcrypt
bcrypt Error: data and hash arguments required

I am getting a bcrypt error stating that data and hash arguments are required, referencing line #44 in my routes.js …

javascript bcrypt