ChangeLog 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. 2010-03-18 Sebastien Pouliot <[email protected]>
  2. * Aes.cs: Build here before NET_4_0 (or MOONLIGHT) otherwise
  3. build only if compiled from mscorlib.dll
  4. 2009-11-12 Jb Evain <[email protected]>
  5. * Aes.cs: avoid using an hardcoded assembly version for System.Core.
  6. 2009-07-20 Sebastien Pouliot <[email protected]>
  7. * Aes.cs: Use the fully qualified name since this is not a type known
  8. in the default corlib (2.0 or 1.x).
  9. 2009-04-29 Sebastien Pouliot <[email protected]>
  10. * MD5Cng.cs, SHA1Cng.cs, SHA256Cng.cs, SHA256CryptoServiceProvider.cs,
  11. SHA384Cng.cs, SHA384CryptoServiceProvider.cs, SHA512Cng.cs,
  12. SHA512CryptoServiceProvider.cs: Regenerated to be excluded from
  13. NET_2_1
  14. 2008-08-07 Sebastien Pouliot <[email protected]>
  15. * Aes.cs: Don't set the (unexisting) FeedbackSizeValue field
  16. for NET_2_1
  17. * AesTransform.cs: Remove code for blocksize != 128 bits
  18. 2008-08-05 Sebastien Pouliot <[email protected]>
  19. * Aes.cs: New. Base class for AES cipher.
  20. * AesCryptoServiceProvider.cs: New. CSP implementation
  21. of AES. For mono we're reusing the managed AesTransform
  22. * AesManaged.cs: New. Managed implementation of AES.
  23. * AesTransform.cs: New. Actual managed code for AES.
  24. * CngAlgorithm.cs: New.
  25. * CngAlgorithmGroup.cs: New.
  26. * MD5Cng.cs: New. Generated code.
  27. * SHA1Cng.cs: New. Generated code.
  28. * SHA256Cng.cs: New. Generated code.
  29. * SHA256CryptoServiceProvider.cs: New. Generated code.
  30. * SHA384Cng.cs: New. Generated code.
  31. * SHA384CryptoServiceProvider.cs: New. Generated code.
  32. * SHA512Cng.cs: New. Generated code.
  33. * SHA512CryptoServiceProvider.cs: New. Generated code.