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

learn more… | top users | synonyms

0
votes
2answers
25 views

Storing secure password MD5, BCRYPT, PBKDF2 ( PDO, MySQL, PHP )

What is the best and most secure way of storing a password into MySQL using PHP. My views as from what I've read online. MD5 - Outdated and easily breachable. (Example not needed) BCRYPT - Secure ...
-1
votes
1answer
26 views

Optimized use of BCrypt [closed]

While reading a bit about BCrypt, I found this post: http://security.stackexchange.com/questions/4781/do-any-security-experts-recommend-bcrypt-for-password-storage And my attention fell especially on ...
1
vote
1answer
28 views

Java: Is this good use of BCrypt?

I would like to know if my current implementation of BCrypt is correct, I am aware that I am not using BCrypt.checkpw() which may lead to an issue so that is the main reason I verify it here. ...
-2
votes
1answer
43 views

Hashing password in register and login do not match [duplicate]

I've a register form that allow user to enter password and I hash this password using crypt In the register form it work and the password is hashed and secure in the database but when it come to ...
-1
votes
2answers
36 views

Replacing SHA1 with BCRYPT [duplicate]

I have been looking into replacing SHA1 as the encryption of passwords with possibly bcrypt or something similar, and I cant seem to find a step-by-step, easy to follow tutorial for implementing this. ...
0
votes
2answers
38 views

how to use Bcrypt in php to encrypt password with register and login process [duplicate]

I have a register page that allow user to enter information one of it password so it must be encrypted or hashed so used Bcrypt and it work on the register but when it come to the login i do not ...
0
votes
1answer
36 views

using Bcrypt with phpto hashing password not working

i am using the Bcrypt with php to get a safe hashing password to submit to the database in the registration the password get hashed but in the login the system display that the 2 password to not ...
0
votes
1answer
47 views

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 I'm trying to authenticate the user. This is my stack trace ...
0
votes
1answer
18 views

Eclipse issue? Can't find java.security.SecureRandom in source packages

I've added the jBCrypt code to my project which attempts to use java.security.SecureRandom, and when I build I get the following error: java.security.SecureRandom can not be found in source ...
3
votes
1answer
68 views

Is it a bad practice to use bcrypt(md5(pwd) + salt)?

I'm trying to share logins between my app and an IPB forum. I've seen that Invision is providing a module to share the credentials: IPS Connect To make it simple, there is a master application and ...
1
vote
5answers
135 views

PHP Password Hashing, BCrypt to Sha1/md5

I have been looking at upgrading the password hashing security of one of my applications as I have been reading up about brute force attacks being considerably faster then they used to. Currently I am ...
0
votes
1answer
42 views

Ruby on Rails: BCrypt InvalidSalt Error

I'm new to rails (and ruby in general), so my problem is probably easy to solve. I'm trying to create a simple app where you can create a user and log in. I'm encrypting the password with BCrypt and ...
1
vote
1answer
31 views

How to protect a user password with bcrypt and mongoid

I've just started out using MongoDB and, in particular, Mongoid. naturally I'd like to ensure my User's passwords are kept nice and secure, and previously I'd have done this with ActiveRecord and ...
0
votes
0answers
147 views

make.exe: GCC: Command not found

I'm trying to install BCRYPT... but I need to compile it. I'm following the instructions from the 1st answer on this post no such file to load -- bcrypt_ext (via devise) I am in the ...
0
votes
1answer
70 views

Compiling/Installing py-bcrypt on Win7x64

I've got the following setup: Win7 x64 Python 3.3 Visual Studio 2012 Ultimate I'm trying to install the py-bcrypt using pip. Initially the install failed because it couldn't find vcvars.bat By ...
1
vote
1answer
76 views

Behavior of PHP's password_hash()

I have been looking into the best way to encrypt passwords for use with my panel, I decided to go ahead and use BCRYPT, simply due to the cost of each encryption and the fact that it is generally ...
1
vote
1answer
78 views

Symfony2 custom password encoder and password hash update

I'm learning Symfony2 by moving some wordpress blog to Symfony. I'm stuck with login procedure. Wordpress uses non standard password hashing like $P$.... and I want to check users against old password ...
1
vote
0answers
93 views

bcrypt invalid elf header when running node app

I'm working on a nodejs project for school. I wasn't able to install bcrypt with npm so i installed bcrypt-nodejs and the project worked fine yesterday. But today, when I do a "node app" i have this ...
1
vote
1answer
89 views

Hash string being cut off upon insert to database

I am having a strange issue. I will post two sections of code to hopefully make my question clear. The following code creates a hash from the password the user enters and I am using hmac and bcrypt: ...
1
vote
0answers
25 views

Where 2x prefix are used in BCrypt?

The question is the same title, Where $2x$ is used in BCrypt? The following scenario is right? We have a set of passwords that hashed with $2a$ prefix already, when the Server PHP version was ...
0
votes
1answer
54 views

Length of salt in CRYPT_BLOWFISH

In PHP manual states that: CRYPT_BLOWFISH - Blowfish hashing with a salt as follows: "$2a$", a two digit cost parameter, "$", and 22 digits from the alphabet "./0-9A-Za-z". I realized that ...
0
votes
1answer
43 views

How does bcrypt-ruby obscure the passwords of a hacked database?

I am trying to understand how has_secure_password works. On the bcrypt-ruby website has the following below examples of how to use it. The password method of class User confuses me. It looks like the ...
1
vote
1answer
101 views

How to check Cookie Token against bcrypt-hashed Token in DB when using Persistent Login Cookies?

In this popular solution for Persistent Login Cookies which involves generating a random 128-bit "token" to be saved in the user's Cookie, Jens Roland recommends: And DO NOT STORE THE PERSISTENT ...
1
vote
1answer
113 views

Which implementation of bcrypt is recommended for PHP 5.3?

OK, I finally understand bcrypt, how it works, and how to store it in the DB, so I'm almost good to go. The problem now is picking which implementation of bcrypt to use with PHP 5.3. I'm going crazy ...
4
votes
3answers
93 views

How to continuously keep the number of bcrypt rounds relevant to the current year's hardware?

I saw a recommendation that the number of rounds be set to ($currentYear - 2000) to account for Moore's law, so that 2013 would be 13 rounds and therefore 2^13 total iterations. Of course, you need ...
2
votes
2answers
45 views

Should the bcrypt hash be stored in the main User's table or in its own table?

From what I've read, the hash generated by bcrypt should be stored as type CHAR(60). Now, should those bcrypt hashes be stored in the main User table together with the user's UserID and Username, or ...
0
votes
1answer
60 views

Retrieve text from Bcrypt hashed password

Using BCrypt technology to store the password into database as a hash. Though it may be bit slow compared to fast hashing algorithm like MD5, SHA-1, etc, we decided to go as security is more ...
0
votes
0answers
39 views

What is the significance of '$2a$' in python bcrypt?

There are a few sources available via Google and digging through SO, but they seem to be conflicting and incomplete. So my question is: What is the significance of the $2a$ pre-pended to hashes in ...
1
vote
1answer
140 views

Play 2.1, BCrypt: hash yml password attribute before yml-parser generates User object and inserts password value

I'm trying to implement login functionality using the play 2.1 framework. At first i just used plaintext storing of passwords (for which all tests succeeded), so now I've written an enhancement using ...
0
votes
1answer
73 views

Bcrypt() with Zend Framework 1.12.x

Is there a possibility to use Bcrypt() in Zend Framework 1.12.x? I've found Zend\Crypt\Password\Bcrypt for Zend version 2.1.3 but nothing similar for the 1.12.x version. Generally asking: Is there ...
0
votes
1answer
120 views

Checking a password encrypted with bCrypt .. Do I need to send the password over the wire?

I'm currently looking at using bCrypt to encrypt the passwords of the future users in my project. It looks extremely powerful, but here's my concern -- On the web site, create an account. The ...
2
votes
1answer
135 views

how to stop bcrypt salt from changing everytime for login password

I grabbed the code for defining the bcrypt function from http://stackoverflow.com/a/6337021/2115954. The registration of the password works fine, and saves all of the fields to the table in the ...
2
votes
1answer
71 views

`password_verify` call returning false for correct password

I have the following snippet of code: // bcrypt hash of 'password' $hash = '$2y$10$4u0cQ.WEnwHDo.C5Nl1vm.shKA0beQ32wqzphSfzklAq9OcDM2nLu'; if(password_verify('password', $hash)) ...
0
votes
1answer
235 views

node-bcrypt compile error

I'm fully aware that this is probably my fault (mostly for using Gentoo), but I'm stuck so if there is something I'm not seeing or a short coming I've found please sound in. make: Entering directory ...
0
votes
2answers
217 views

Hash and Unhash? [closed]

Is it possible to Hash using bcrypt in java and again unhash it? Is it even possible? I was trying something new but I do not know anything about Unhashing (if it's possible). Can someone give me an ...
2
votes
1answer
113 views

How to use .Net implementation of BCrypt for SQL Server?

I've searched in google, unfortunately I can't found any expect answers I want. I've downloaded .NET implementation of BCrypt Honest, I usually coding in PHP language, i have no idea on things like ...
0
votes
1answer
82 views

PHP to C# Conversion using BCrypt

I am hoping someone might shed some light on which library I might use if any are available to convert a PHP based application that has been using BCrypt $2a to a .Net based application, the current ...
0
votes
1answer
121 views

How can I encrypt my cookie or session to work with phppass?

I am currently using http://www.openwall.com/phpass/ to hash my passwords out. The hash results in a different hash even if the same password is entered. I check the password like this: $verify = ...
0
votes
1answer
77 views

Uninitialized constant BCrpyt when silencing in test.rb

I am having an error when running spork. ../config/environments/test.rb:41:in `block (2 levels) in ': uninitialized constant BCrpyt (NameError) This is in my test.rb: require 'bcrypt' ...
0
votes
0answers
37 views

Bcrypt authorization with desktop client

So I have a website that uses Bcrypt security on the registration/login. It generates the random salt + password hash and stores it in the database. We are now working on a desktop client that will ...
1
vote
2answers
290 views

encrypt/decrypt passwords with node.js

I am working with the bcrypt nodejs module. I am satisfied with it to encrypt and compare passwords, but it seems impossible to decrypt it. I am wondering: How do you encrypt/decrypt passwords ...
6
votes
2answers
137 views

PHP 5.5 Password Hashing API Query

So I'm using the new PHP 5.5 Password Hashing API, and I'm not sure if I got this correctly. I've tried automatically rehashing every login and sometimes I fail, even when the hashing turns out to ...
0
votes
0answers
32 views

Hashing Password With BCrypt [duplicate]

I am trying to understand how the BCrypt password hash works but seems all the articles i have read online are not able to explain things well to me. My understanding is that when you hash a password ...
2
votes
2answers
92 views

Using BCrypt.Net to simulate Devise Password Encryption?

I am trying to a pretty simple task here. I have a server that I am running which has a MySQL instance running on it, which my rails app uses to populate. Unfortunately for me I used devise to do all ...
0
votes
1answer
138 views

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 on account creation, I do the following within the signup method (with some code ...
6
votes
3answers
185 views

strcmp vs. == vs. === in PHP for checking hash equality

I'm using crypt() to hash passwords in PHP, and am trying to work out the safest way of testing equality of the resulting hash when performing password checks. There are three options that I can see: ...
1
vote
1answer
265 views

Using bcrypt with CakePHP 2.3

I noticed in the 3.2 release of CakePHP they added support for hashing using bcrypt. I'd like to take advantage of this however I can't seem to find how to use it properly. On my User models ...
0
votes
2answers
93 views

Do I need unique salts with bcrypt in PHP?

I understand that bcrypt is more secure than other methods but still puts you the same situation where you need to salt passwords! If the salt is included in the hash string it's not needed to store ...
0
votes
1answer
93 views

When calling BCrypt is get the error - Line 535: Cannot invoke clone() on the array type int[]

I am using the following code to generate an encrypted password: class DuplicateHandler<T> implements AsyncCallback<User> { public void onFailure(Throwable ex) { Window.alert("RPC ...
1
vote
2answers
471 views

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\RZ\Finance-Man-GUI\node_modules\bcrypt>node "C:\Program File ...

1 2 3 4 5 6