tags:

views:

104

answers:

1

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.

+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
I'm not going to comment whether calling a Hash algorithm as crypto algorithm a good idea :p
Midhat
lol, fair enough
Remus Rusanu
Well, it is a cryptographic hash function...
Paul Ruane
I'm not rewriting the logic of it, just making its execution parallel.
Jason