Tagged Questions

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 ...
4
votes
1answer
295 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 ...
3
votes
1answer
206 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 ...
0
votes
0answers
7 views

Storing BCrypt hash in MySql using .net

When reading on Haacked's blog post about the Hazards of Converting binary data to a string I started worrying about the way I want to encode and store the hash (asp.net mvc). The type I use is ...