Tagged Questions
BCrypt is an implementation of the Blowfish cipher and a computationally-expensive hash function mostly used for password hashing.
78
votes
5answers
16k views
How do you use bcrypt for hashing passwords in PHP?
Every now and then I hear the advice "Use bcrypt for storing passwords in PHP, bcrypt rulllez!!!11"
OK, but what is this bcrypt? PHP doesn't offer any such functions, wikipedia babbles about a ...
39
votes
1answer
5k views
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());
To check whether a plaintext password matches one that has been ...
32
votes
3answers
2k views
.net implementation of bcrypt
Does anyone know of a good implementation of bcrypt, I know this question has been asked before but it got very little response. I'm a bit unsure of just picking an implementation that turns up in ...
23
votes
1answer
1k views
Optimal bcrypt work factor
What would be an ideal bcrypt work factor for password hashing.
If I use a factor of 10, it takes approx .1s to hash a password on my laptop. If we end up with a very busy site, that turns into a ...
21
votes
4answers
3k views
Is BCrypt a good encryption algorithm to use in C#? Where can I find it?
I have read that when hashing a password, many programmers recommend using the BCrypt algorithm.
I am programming in C# and is wondering if anyone knows of a good implementation for BCrypt? I found ...
16
votes
2answers
2k views
Why does BCrypt.net GenerateSalt(31) return straight away?
I stumbled across BCrypt.net after reading Jeff Atwood's post about storing passwords which led me to Thomas Ptacek's recommendation to use BCrypt to store passwords. Which finally led me to this C# ...
15
votes
3answers
2k views
Storing a hashed password (Bcrypt) in a Database - type/length of column?
I want to store a hashed password (using BCrypt) in a database. What would be a good type for this, and which would be the correct length? Are passwords hashed with BCrypt always of same length?
EDIT
...
13
votes
1answer
1k views
What's the advantage of scrypt over bcrypt?
I'm looking at ways to securely store passwords. Some people claim that scrypt is "better" than bcrypt, and so far I've seen nobody who claims vice versa or that scrypt is insecure, though some call ...
12
votes
2answers
2k views
bCrypt implementation in Javascript
I'm wondering if anyone has written or come across any implementations of bcrypt in JavaScript. I'm not against writing the code myself but if someone with a stonger background in cryptography has ...
6
votes
3answers
221 views
What's the difference between bcrypt and hashing multiple times?
How is bcrypt stronger than, say,
def md5lots(password, salt, rounds):
if (rounds < 1)
return password
else
newpass = md5(password + salt)
return md5lots(newpass, ...
5
votes
1answer
541 views
Encrypting a file with a weak password, bcrypt or SHA-256 + AES-256?
I start with a weak password (8 lower case characters for ex) and a file. I need to encrypt that file using that password. Result has to be secure against known attacks.
Approach 1: I could hash the ...
5
votes
2answers
2k views
Changing devise and rails 3 to use bcrypt instead of sha
I've got a rails 3 production app that uses devise to deal with authentication. I'd like to change to using bcrypt instead of sha on the app but I can't find any resources that explain the process of ...
4
votes
2answers
295 views
How can bcrypt have built-in salts?
Coda Hale's article "How To Safely Store a Password" claims that:
bcrypt has salts built-in to prevent rainbow table attacks.
He cites this paper, which says that in OpenBSD's implementation of ...
4
votes
6answers
268 views
How is bcrypt more future proof than increasing the number of SHA iterations?
I've been researching bcrypt hashing, and of course one of the large benefits of the scheme its "adaptiveness". However, how is it anymore adaptive than simply increasing the amount of iterations you ...
4
votes
2answers
85 views
How do I batch encrypt existing passwords in a MySQL db?
I am updating a web system for a client, and his 'accounts' table has over 20,000 users, each with a password field of straight text, meaning none of the passwords are encrypted. (I know, scary!) ...
4
votes
2answers
281 views
Rails 3 Devise grinds to halt with more encryption “stretches”
Whenever I put config.stretches = 20 in config/initializers/devise.rb, the server times out on encryption requests.
The reposnse time is bearable at 15 stretches, then rapidly increases as I raise ...
4
votes
1answer
324 views
bcrypt — keeping up with Moore's law
I'm using bcrypt to store passwords in my database, using a work factor of 7, which takes about 0.02s to hash a single password on my reasonably modern laptop.
Coda Hale says that using bcrypt allows ...
4
votes
1answer
262 views
.Net implementation of bcrypt, which implements HashAlgorithm?
I'm looking to allow bcrypt support in my authentication library. One of the problems right now is that I assume that the hasher will be of type HashAlgorithm. Bcrypt.net does not implement this ...
4
votes
5answers
3k views
Installing bcrypt-ruby gem on Windows
I'm trying to install bcrypt-ruby on Windows Vista.
So far, I have been able to install nmake.exe from a MS knowledge base article and cl.exe from installing Visual Studio 2008 Express.
However, I ...
4
votes
4answers
2k views
What to use for password hashing? Any reason not to use jBCrypt?
I'm planning to use jBCrypt for password hashing in a new web application, as it is supposed to be the best from what I've read. As I haven't used it before I'm looking into if there is any reason not ...
3
votes
2answers
115 views
How does bcrypt keep up with Moore's law?
I have been seeing recommendations to use bcrypt to hash passwords because of its ability to keep up with Moore's Law.
Apparently the reason for this is because it would take much longer for an ...
3
votes
2answers
363 views
Iterate SHA512 to make it more secure?
I currently use SHA512 with per user random salt to hash user passwords and store them in a database. I thought this was pretty secure until I read this article about the use of cheap GPU's to brute ...
3
votes
1answer
293 views
ASP.NET MVC 3 app, BCrypt.CheckPassword failing
I'm working on implementing security in an ASP.NET MVC 3 application, and am using the BCrypt implementation found here to handle encryption and verification of passwords. The user registration screen ...
3
votes
1answer
490 views
Are bcrypt salts accessible separately?
When using has_secure_password in Rails 3.1, bcrypt randomly generates a salt for each user's password. Based on this response, I understand the salt is stored as part of the password hash. Is there a ...
3
votes
1answer
182 views
Preferred BCrypt.Net implementation
There are a few different ports of BCrypt.net out there and it's very hard to tell which is the "best".
Has anyone taken the time to review them and come to any conclusion as to which project to ...
3
votes
1answer
376 views
Can someone explain how BCrypt verifies a hash?
I'm using C# and BCrypt.Net to hash my passwords.
For example:
string salt = BCrypt.Net.BCrypt.GenerateSalt(6);
var hashedPassword = BCrypt.Net.BCrypt.HashPassword("password", salt);
//This ...
3
votes
1answer
508 views
How can I use bcrypt on appengine for java?
Are there any free implementations that will run on GAE/J?
3
votes
2answers
1k views
How can I vendorize bcrypt in a PHP application (and should I)?
I am contributing to a relatively mature open-source PHP project. Recently, I discovered that it stores passwords as plain MD5 hashes, which is quite bothersome to me. I figured that if I was going ...
2
votes
2answers
33 views
Bcrypt is hasing or encryption? A bit of confusion
I have been reading about bcrypt (application perspective). Thinking of using it to store passwords on my site.
Out of some stuff that I read it suggests either ways:
e.g. 1: Bcrypt is a cross ...
2
votes
2answers
59 views
Bcrypt - How many iterations/cost?
I've read some articles saying you should set the cost to be at least 16 (216), yet others say 8 or so is fine.
Is there any official standard for how high the cost should be set to?
2
votes
1answer
137 views
Storing bcrypt hashes
According to PHP's doc, bcrypt salt are made of
"$2a$", a two digit cost parameter, "$", and 22 digits from the alphabet "./0-9A-Za-z"
So, if i use the crypt() function to hash my passwords, ...
2
votes
1answer
463 views
NodeJS: bcrypt vs native crypto
Can someone point out the differences between the two and example situations where use each?
bcrypt looks great.
2
votes
1answer
92 views
How to migrate a password hash?
If I have passwords stored as a salted MD5 hash, but want to move them to use bcrypt, what's the best way to perform that transition? (given that I can't get the passwords back)
Should I bcrypt the ...
2
votes
5answers
430 views
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 hashing with a salt as follows: "$2a$", a two digit cost parameter, "$", ...
2
votes
2answers
571 views
BCrypt says long, similar passwords are equivalent - problem with me, the gem, or the field of cryptography?
I've been experimenting with BCrypt, and found the following. If it matters, I'm running ruby 1.9.2dev (2010-04-30 trunk 27557) [i686-linux]
require 'bcrypt' # bcrypt-ruby gem, version 2.1.2
...
2
votes
1answer
387 views
jBCrypt 0.3 C# Port (BCrypt.net)
After looking into a bug in the original jBCrypt v0.1 C# port: BCrypt.net (Related Question). I decided to compare the new jBCrypt code against the old C# port to look for discrepancies and potential ...
1
vote
1answer
52 views
jBCrypt alternative? Threadsafe and with a bigger community
To hash passwords (one-way), it looks like bcrypt is the best.
I am about to start using jBCrypt, but I have a few worries:
No mailing list.
Very low activity overall.
Bug tracker has only ever had ...
1
vote
2answers
52 views
I'm using bcrypt for php and want it to take a long time for a potential hacker to login
I am referencing this answer: http://stackoverflow.com/a/4766811/1114105
We re-hash the password, but then we don't really do anything with the hash (we use the POST-submitted plaintext password in ...
1
vote
1answer
98 views
Best way for hashing a “remember me” cookie token
I'm trying to implement a "remember me" feature, following the guidelines provided here: The Definitive Guide To Forms based Website Authentication, and here: ...
1
vote
2answers
82 views
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 and a password. I am using bcrypt algorithm for hashing the password before saving ...
1
vote
1answer
48 views
bcrypt using own gensalt() - Is it enough safe?
Since the mechanism of bcrypt is the next :
>>> myhash = bcrypt.hashpw('testpassword', bcrypt.gensalt(12))
>>> myhash
...
1
vote
0answers
73 views
gmail_smtp.git messed up
I am trying to get gmail working on Heroku and followed the "tutorial" on http://blog.heroku.com/archives/2009/11/9/tech_sending_email_with_gmail/
When I did the install ...
1
vote
1answer
105 views
Using jBCrypt to salt passwords in Android App causes a long hang
I am using the jBCrypt Library to hash user passwords when they register using my app.
I am using the basic hash function, with a salt, like so:
String pass = BCrypt.hashpw(rawPass, ...
1
vote
1answer
169 views
Decryptor for bcrypt
The title is pretty self explanatory. I'm not sure if this exists, as it would greatly compromise the security of bcrypt, but i'm using Devise in a rails app and forgot my password. However I can ...
1
vote
3answers
209 views
Random salt + hashed pass or a random salt + crypt()'ed pass?
I'm trying to make a more or less secure login system for my site, I haven't had much time with securing things so I'm learning as I go along. Wanted to hear some views on which of the following is ...
1
vote
2answers
178 views
PHP and Bcrypt [closed]
Possible Duplicate:
How do you use bcrypt for hashing passwords in PHP?
I am developing an API using PHP. My previous version of the API which I want to migrate from was build using Rails ...
1
vote
2answers
263 views
What is the safest way to store a password using Code Igniter? (solved)
I am using Code Igniter for my current project.
As of now, I am using MD5 for password hashing, but I have read at a lot of places, that it is not a good practice to do so.
What should I go with?
...
1
vote
2answers
235 views
Is there any way to use bcrypt “hashing” in PHP 5.2?
I'm running a website with password hashing, but I think the current algorithm is insufficient. I tried to use PHP's crypt() with the blowfish option, but my PHP version is only 5.2 so CRYPT_BLOWFISH ...
1
vote
0answers
87 views
What's the most secure possible Devise configuration?
I'm about to start setting up an employees-only Rails application at our company for working with sensitive information. There will be a firewall, physical security measures, etc. My concern right now ...
1
vote
2answers
217 views
BCrypt generating different hashes given the same salt, string, and factor
Using one of the C# implementations of BCrypt to hash passwords and store them into a SQL database. However when I return to validate against the hash string BCrypt generates a different hash than the ...