Tagged Questions
The hashalgorithm tag has no wiki summary.
5
votes
3answers
453 views
Why is ComputeHash not acting deterministicly?
I've run into an interesting issue.. It seems that ComputeHash() for a "HMACSHA256" hash is not behaving deterministicly.. if I create two instances of HashAlgorithm using ...
4
votes
1answer
262 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
222 views
.NET: Disposing a HashAlgorithm object
Objects that derive from HashAlgorithm such as MD5CryptoServiceProvider have a Dispose() method, but it's private. Instead it has a Clear() method which "Releases all resources" used by it.
WTF?
Is ...
2
votes
2answers
180 views
hashing password giving different results
I am taking over a system that a previous developer wrote. The system has an administrator approve a user account and when they do that the system uses the following method to hash a password and ...
1
vote
1answer
80 views
Microsoft Dynamics CRM - password hashing algorithm
I work at a University and our application for admissions is a product that is built on top of Microsoft Dynamics CRM 4.0. (The application is called 'Recruiter'.)
There is a table with usernames ...
1
vote
2answers
171 views
what is the criteria to choose encryption algorithm for my system
I am working on a system which is going to be applied in the real environment. I need to make high security mechanism for the system, one of them is encryption for user's passwords in my database.
I ...
1
vote
2answers
208 views
How to switch hash_algos() on ? I'm with Php 5.2.11
My PHP version is 5.2.11 which is higher than the required version for hash_algos. however, when I run it either via web or command line, it returns
Fatal error: Call to undefined function ...
1
vote
1answer
220 views
FIPS-compliant HashAlgorithm on WinXP?
How can I use C# on a FIPS-compliant WinXP SP2 box to uniquely hash the contents of a given file? I'm not concerned about performance (yet?).
Hopefully someone can point out an exception to the ...
0
votes
1answer
35 views
Why isnt HashAlgorithm.Dispose public?
Why isnt HashAlgorithm.Dispose public?
void IDisposable.Dispose()
{
this.Dispose(true);
GC.SuppressFinalize(this);
}
I understand that it is and explicit interface implementation and can ...