bcrypt.net Questions

6

Solved

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 ...
Mirellamirelle asked 16/5, 2009 at 21:56

2

Solved

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 librar...
Bearing asked 22/3, 2011 at 15:19

3

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 p...
Jeffjeffcoat asked 8/4, 2011 at 20:39

2

Solved

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 eval...
Guinness asked 22/3, 2011 at 15:41

3

Solved

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 (http...
Protract asked 23/6, 2011 at 21:17

1

Solved

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 cl...
Housemaid asked 13/4, 2011 at 0:35

2

Solved

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?...
Herbivorous asked 26/1, 2009 at 20:11

1

Solved

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 potenti...
Dizen asked 8/2, 2010 at 16:33

2

Solved

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...
Observer asked 8/2, 2010 at 14:55
1

© 2022 - 2024 — McMap. All rights reserved.