So I was wondering if there are any major differences between the various implementations of the hash algorithms, take the SHA series of algorithms for example. All of them have 3 implementations each, 1 in managed code and 2 wrappers around different native crypto APIs, but are there any major differences between using any of them? I can imagine that the wrapper versions could have higher performance since its being executed in native code, but surley hey all need to perform the exact same calculations and thus provide the same output ie hey are interchangable. Is this correct?
For instance SHA512CNG cant be used on XP SP2 (docs are wrong) but SHA512MANAGED can.
@Maxim - Thank you, but not quite what I was asking for. I was asking if there is any difference, other than possibly performance, from using the Managed/CryptoServiceProvider/CNG implementations of a given hash algorithm. With .NET 3.5 you get all of the hash algorithms with three implementations, so
SHA512Managed SHA512CryptoServiceProvider SHA512Cng
The latter two being wrappers around native APIs. This is true for all SHAxxx implementations for example.
One difference is that the native versions (at least some of them) are FIPS-certified (i.e., approved by the US government), whereas the managed ones are not. If your code happens to be running on a Windows machine that has been configured as "FIPS only", attempts to use the managed versions will fail.
Most Windows machines are not configured in that way, but if you're deploying to a government- or defense-oriented (or other highly secure) environment you may run into this situation.
See http://blogs.msdn.com/shawnfa/archive/2005/05/16/417975.aspx.
I did a quick and dirty comparison between
CNG
andmanaged
on SHA512 which is the slowest of all SHA algorithms AFAIK using the code below.After several runs I found that the difference was that CNG was considerably faster than managed version of the algorithm with about
21.7% to 49.5%
The Cng versions are supposed to be a little faster, but I just wrote up a little program that compares the speeds of each. (I had a client that was asking about the performance characteristics of MD5 vs. SHA1)
I was surprised to find out there is little to no difference between MD5 and SHA1, but was also surprised that there is a slight difference in Cng and the CryptoServiceProvider.
The source is pretty straight forward, I added reps to do the same iteration multiple times so I could average in case there was any weirdness going on, on my machine during one of the runs.
call the following with a call like this:
I ran this in a loop of increasing size to figure out if one fell over when using large or small inputs. Here is the loop, and the data follows (my computer ran out of ram at 2^28):
Another difference between the Managed and the CNG versions is the supported .Net Framework version: e.g.
However, I believe that if we are not constrained by the framework version or to support legacy OS versions, we should use the CNG versions: