ChangeLog 1.3 KB

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