Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
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 ...
17
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# ...
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
3answers
537 views

Adding a custom hashAlgorithmType in C# ASP.NET

I've got a page that I need to beef up security on. I'm using the built-in MembershipProvider functionality and currently have hashAlgorithmType set to SHA512. I've got the BCrypt.NET library ...
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 ...
3
votes
1answer
405 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 ...
2
votes
1answer
394 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 ...
0
votes
1answer
36 views

working with BCrypt.net

I'm working a custom membership system in ASP.NET MVC3 (explained here). And I want to use BCrypt. My question is about BCrypt.net arguments range. i.e. the minimum and maximum length of string that ...
0
votes
1answer
22 views

BCrypt Hashed Password Truncated in The Database

I'm using .Net implementation of BCrypt for storing passwords in the database. The password column is VARCHAR(MAX) This is the code that updates the Password via stored procedure: Update [User] ...
0
votes
1answer
248 views

Where to find documentation on BCrypt for .NET?

I used NuGet to get the BCrypt library and it's installed properly. Now I'd like to read about it and how to use it, yet I can't seem to find any documentation. Even searching for the libraries ...