Sebastien Pouliot af038f65bc Fix parameter name for Aes.Create 14 anni fa
..
.gitattributes b293948fb7 EOL handling 15 anni fa
Aes.cs af038f65bc Fix parameter name for Aes.Create 14 anni fa
AesCryptoServiceProvider.cs 86ec227096 2008-08-05 Sebastien Pouliot <[email protected]> 17 anni fa
AesManaged.cs ee5160d55d Fixed AesManaged parameter names to make gui-compare happy 15 anni fa
AesTransform.cs 2522376906 2008-08-07 Sebastien Pouliot <[email protected]> 17 anni fa
ChangeLog b4753cd752 2011-02-17 Juho Vähä-Herttua <[email protected]> 15 anni fa
CngAlgorithm.cs b4753cd752 2011-02-17 Juho Vähä-Herttua <[email protected]> 15 anni fa
CngAlgorithmGroup.cs b4753cd752 2011-02-17 Juho Vähä-Herttua <[email protected]> 15 anni fa
CngExportPolicies.cs 7735ff82f6 2011-02-16 Juho Vähä-Herttua <[email protected]> 15 anni fa
CngKeyBlobFormat.cs b4753cd752 2011-02-17 Juho Vähä-Herttua <[email protected]> 15 anni fa
CngKeyCreationOptions.cs 7735ff82f6 2011-02-16 Juho Vähä-Herttua <[email protected]> 15 anni fa
CngKeyCreationParameters.cs b4753cd752 2011-02-17 Juho Vähä-Herttua <[email protected]> 15 anni fa
CngKeyOpenOptions.cs 7735ff82f6 2011-02-16 Juho Vähä-Herttua <[email protected]> 15 anni fa
CngKeyUsages.cs 7735ff82f6 2011-02-16 Juho Vähä-Herttua <[email protected]> 15 anni fa
CngProperty.cs b4753cd752 2011-02-17 Juho Vähä-Herttua <[email protected]> 15 anni fa
CngPropertyCollection.cs b4753cd752 2011-02-17 Juho Vähä-Herttua <[email protected]> 15 anni fa
CngPropertyOptions.cs 7735ff82f6 2011-02-16 Juho Vähä-Herttua <[email protected]> 15 anni fa
CngProvider.cs b4753cd752 2011-02-17 Juho Vähä-Herttua <[email protected]> 15 anni fa
CngUIPolicy.cs b4753cd752 2011-02-17 Juho Vähä-Herttua <[email protected]> 15 anni fa
CngUIProtectionLevels.cs 7735ff82f6 2011-02-16 Juho Vähä-Herttua <[email protected]> 15 anni fa
ECDiffieHellmanKeyDerivationFunction.cs 7735ff82f6 2011-02-16 Juho Vähä-Herttua <[email protected]> 15 anni fa
ECKeyXmlFormat.cs 7735ff82f6 2011-02-16 Juho Vähä-Herttua <[email protected]> 15 anni fa
MD5Cng.cs e4dd723dbf 2009-04-29 Sebastien Pouliot <[email protected]> 16 anni fa
README.CNG 86ec227096 2008-08-05 Sebastien Pouliot <[email protected]> 17 anni fa
README.CSP 86ec227096 2008-08-05 Sebastien Pouliot <[email protected]> 17 anni fa
SHA1Cng.cs e4dd723dbf 2009-04-29 Sebastien Pouliot <[email protected]> 16 anni fa
SHA256Cng.cs e4dd723dbf 2009-04-29 Sebastien Pouliot <[email protected]> 16 anni fa
SHA256CryptoServiceProvider.cs e4dd723dbf 2009-04-29 Sebastien Pouliot <[email protected]> 16 anni fa
SHA384Cng.cs e4dd723dbf 2009-04-29 Sebastien Pouliot <[email protected]> 16 anni fa
SHA384CryptoServiceProvider.cs e4dd723dbf 2009-04-29 Sebastien Pouliot <[email protected]> 16 anni fa
SHA512Cng.cs e4dd723dbf 2009-04-29 Sebastien Pouliot <[email protected]> 16 anni fa
SHA512CryptoServiceProvider.cs e4dd723dbf 2009-04-29 Sebastien Pouliot <[email protected]> 16 anni fa

README.CNG

CNG stands for "Cryptography API: Next Generation"

CNG is the replacement for CryptoAPI under Windows Vista (and later) and
just like CryptoAPI it is a Windows-specific, native (unmanaged) library.

In MS implementation the *Cng classes are simply managed wrappers around
the native CNG libraries. This is similar to older *CryptoServiceProvider
classes that provided managed wrappers around CryptoAPI.

In Mono implementation the *Cng classes are, mostly[1], wrappers around
existing managed classes provided in older version of the framework.
This is essentially similar to what Mono already does for the
*CryptoServiceProvider classes (i.e. provide managed implementation).

Of couse this won't affect people using the base algorithm classes to
create the default instance of their algorithm.

E.g.
SHA256 hash = SHA256.Create ();
has been working for years and will continue to do so.


New CNG crypto classes Wrapper around
---------------------- --------------
ECDsaCng none [1]
ECDiffieHellmanCng none [1]
MD5Cng MD5CryptoServiceProvider [mscorlib]
SHA1Cng SHA1Managed [mscorlib]
SHA256Cng SHA256Managed [mscorlib]
SHA384Cng SHA384Managed [mscorlib]
SHA512Cng SHA512Managed [mscorlib]


[1] Two specific cases, namely ECDH and ECDSA, are new algorithms that
were not available before CNG and for which Mono does not, at the
present time, have managed alternatives.

The *actual* behavior of both class is to throw a PlatformException
just like running the same code would do under Windows XP (or earlier).
Once we have managed implementations for both algorithms we'll behave
like Vista.