What is default hash algorithm that ASP.NET membership uses? And how can I change it?
|
feedback
|
|
The default hashing is SHA1 but they also salt it and base64 it:
If you want to know more about how to change it I still need to find out (unless using custom provider see below) however SHA-1 is pretty good for now. If you are looking to reverse it or lookup from this these guys did some work on that: http://forums.asp.net/p/1336657/2899172.aspx This SO question will help in reversing or duplicating this technique if that is what might be needed. http://stackoverflow.com/questions/530426/reimplement-asp-net-membership-and-user-password-hashing-in-ruby If you are making a custom provider you can create your hashing and encryption algorithms and methods. | ||||
|
feedback
|
|
The default hash algorithm type is SHA1. There are two ways that you can change this. 1) If you are working with IIS 7 you can update this using the "Machine Key" configuration (shown below). This allows you to choose the encryption method from a list of available options and specify the keys or the key generation options.
2) If you are working with IIS 6 you can change the hash algorithm type using the membership element in the web.config file:
According to the documentation the string value of the hashAlgorithmType attribute can be any of the provided .Net hashing algorithm types. A bit of digging shows that the valid values for ASP.Net 2, 3 and 3.5 are The value of the hashAlgorithmType attribute can also be an entry from the cryptoNameMapping element in the machine.config file. You could use this if you require a 3rd party hashing algorithm. The machine.config file can typically be found in | |||||||
feedback
|
|
The default hash algorithm changed to HMACSHA256 in the .NET 4.0 Framework. Note that unlike SHA-1, HMAC SHA-256 is a keyed hash. If your hashes are behaving non-deterministically, you probably haven't set a key, forcing it to use a random one. Something similar to the following would be the culprit (which is what I just spent an hour figuring out :p ).
If you wish to have it work with an existing provider you can revert it back to the former defaults using this guide. | |||
|
feedback
|
|
Please check the article ASP.NET Membership Password Hashing Algorithm. | ||||
|
feedback
|
|
There is one correction in hashing algorithm, you must use:
instead of
Read article http://svakodnevnica.com.ba/index.php?option=com_kunena&func=view&catid=4&id=4&Itemid=5&lang=en#6 | ||||
|
feedback
|
|
The above answer by Ryan Christensen isn't complete. The part where it converts the salt to a byte[] isn't correct. This is a working example that I've implemented in a solution for a client:
| ||||
|
feedback
|
