Tagged Questions

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 ...
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 ...
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, ...
1
vote
2answers
232 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
3answers
1k views

Password Encryption: PBKDF2 (using sha512 x 1000) vs Bcrypt

I've been reading about the Gawker incident and several articles have cropped up regarding only using bcrypt to hash passwords and I want to make sure my hashing mechanism is secure enough to avoid ...
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
3answers
320 views

No bcrypt implementation in iOS… can use other language, create static library?

There is no straight forward bCrypt ( http://codahale.com/how-to-safely-store-a-password/) implementation in Objective-C, and while there are C code that does accomplish this, it's specifically for ...