Tagged Questions

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 ...
4
votes
2answers
301 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
269 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 ...
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
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
38 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
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 ...
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
53 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
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
3answers
210 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
0answers
90 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 ...
0
votes
0answers
35 views

Using BCrypt without HTTPS Strategy - a moderately safe alternative?

I am working on a project (REST Client hitting a WCF REST Web Service with a custom WebServiceHost) that I cannot guarantee HTTPS use and am trying to make the password exchange from the client to the ...
0
votes
0answers
53 views

Does OpenSSL's rsa-128-cbc incorrectly pad?

I was testing my api (built on OpenSSL) using aes-128-cbc. Nist gives out standard test vectors and I was testing my api against that. Here is the test information: COUNT = 0 KEY = ...
0
votes
1answer
50 views

Can't use bcrypt on GoDaddy host?

I uploaded the following PHP script to my hosting: <?php echo CRYPT_BLOWFISH; ?> I get an output of 1 on my localhost (PHP 5.3, WAMP server) and an output of 0 on my GoDaddy account ...
0
votes
1answer
55 views

jBCrypt fails to verify password

I'm working on encrypting passwords for my application since the password will be stored in the shared preferences I found bcrypt and read a lot of good things about it but I can not get it to work ...