I am trying to rewrite the sha-1 algorithm for parallelization in a personal project of mine. Just wondering if anyone knows where I can find a C# implementation of the actual mathematical operations to perform the hash, not just the System.Security.Cryptography function.
views:
104answers:
1
+2
A:
FIPS PUB 180. I'm not going to comment whether rolling your own implementation of any crypto algorithm is a good idea...
Remus Rusanu
2010-03-17 17:11:21
I'm not going to comment whether calling a Hash algorithm as crypto algorithm a good idea :p
Midhat
2010-03-17 17:14:36
lol, fair enough
Remus Rusanu
2010-03-17 17:15:13
Well, it is a cryptographic hash function...
Paul Ruane
2010-03-17 17:51:31
I'm not rewriting the logic of it, just making its execution parallel.
Jason
2010-03-17 18:57:00