ChangeLog 1.4 KB

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