ChangeLog 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. 2005-05-03 Sebastien Pouliot <[email protected]>
  2. * CmsSigner.cs: Removed old FIXME.
  3. * ContentInfo.cs: Better detection (but still less strict than MS).
  4. * EnvelopedCms.cs: Avoid possible NullReferenceException in Encrypt.
  5. * KeyTransRecipientInfo.cs: Minor editing updates.
  6. * Pkcs9ContentType.cs: Added encoding/decoding of the content
  7. information (OID).
  8. * Pkcs9MessageDigest.cs: Added encoding/decoding of the digest.
  9. * SignedCms.cs: Version set to 0 (default). Serial numbers are
  10. reversed here (Fx isn't very consistant in this regard).
  11. * SignerInfo.cs: Convert the hash name to an OID.
  12. * SignerInfoCollection.cs: Completed class.
  13. 2005-04-26 Sebastien Pouliot <[email protected]>
  14. * AlgorithmIdentifier.cs: Removed FIXME - seems "by design".
  15. * ContentInfo.cs: Applied fix for ArgumentNullException (was fixed in
  16. beta2).
  17. * Pkcs9ContentType.cs: Added new override for CopyFrom.
  18. * Pkcs9DocumentDescription.cs: Added new override for CopyFrom.
  19. Applied fix for ArgumentNullException (was fixed in beta2).
  20. * Pkcs9DocumentName.cs: Added new override for CopyFrom.
  21. Applied fix for ArgumentNullException (was fixed in beta2).
  22. * Pkcs9MessageDigest.cs: Added new override for CopyFrom.
  23. * Pkcs9SigningTime.cs: Added new override for CopyFrom.
  24. 2005-04-25 Sebastien Pouliot <[email protected]>
  25. * SignedCms.cs: Fix compiler warning (unused variable).
  26. 2005-04-24 Sebastien Pouliot <[email protected]>
  27. * SubjectIdentifierType.cs: Removed (really) obsolete enum value and
  28. [Serializable] attribute.
  29. 2005-04-23 Sebastien Pouliot <[email protected]>
  30. * CmsRecipient.cs, CmsRecipientCollection.cs, CmsSigner.cs,
  31. EnvelopedCms.cs, KeyAgreeRecipientInfo.cs, Pkcs9Attribute.cs,
  32. Pkcs9ContentType.cs, Pkcs9DocumentDescription.cs, Pkcs9DocumentName.cs,
  33. Pkcs9MessageDigest.cs, Pkcs9SigningTime.cs, SignedCms.cs,
  34. SignerInfo.cs: Adapted for changes in class names in beta2.
  35. 2005-01-17 Sebastien Pouliot <[email protected]>
  36. * Pkcs9Attribute.cs: Fixed wrt unit tests.
  37. * Pkcs9ContentType.cs: Completed public part. Internals are still
  38. todo later.
  39. * Pkcs9DocumentDescription.cs: Completed implementation.
  40. * Pkcs9DocumentName.cs: Completed implementation.
  41. * Pkcs9SigningTime.cs: Completed implementation.
  42. * Pkcs9MessageDigest.cs: Completed public part. Internals are still
  43. todo later.
  44. 2004-09-04 Tim Coleman <[email protected]>
  45. * Pkcs9ContentType.cs Pkcs9MessageDigest.cs:
  46. New classes for 2.0
  47. 2004-07-08 Sebastien Pouliot <[email protected]>
  48. * ContentInfo.cs: Added finalizer.
  49. * CmsRecipient.cs: New. Replace Pkcs7Recipient (from 1.2).
  50. * CmsRecipientCollection.cs: New. Replace Pkcs7RecipientCollection
  51. (from 1.2).
  52. * CmsRecipientEnumerator.cs: New. Replace Pkcs7RecipientEnumerator
  53. (from 1.2).
  54. * CmsSigner.cs: New. Replace Pkcs7Signer (from 1.2).
  55. * EnvelopedCms.cs: New. Replace EnvelopedPkcs7 (from 1.2).
  56. * KeyAgreeRecipientInfo.cs: Fixed internal constructor.
  57. * Pkcs9Attribute.cs: Now inherit from AsnEncodedData. Fixed
  58. constructors.
  59. * Pkcs9DocumentDescription.cs: Sealed class and fixed API.
  60. * Pkcs9DocumentName.cs: Sealed class and fixed API.
  61. * Pkcs9SigningTime.cs: Sealed class and fixed API.
  62. * PublicKeyInfo.cs: Sealed class.
  63. * RecipientInfo.cs: Removed protected constructor.
  64. * RecipientInfoCollection.cs: Sealed class.
  65. * RecipientInfoEnumerator.cs: Sealed class.
  66. * SignedCms.cs: New. Replace SignedPkcs7 (from 1.2).
  67. * SignerInfo.cs: Sealed class and fixed API.
  68. * SignerInfoCollection.cs: Sealed class and fixed CopyTo.
  69. * SignerInfoEnumerator.cs: Sealed class.
  70. * SubjectIdentifier.cs: Sealed class.
  71. * SubjectIdentifierOrKey.cs: Sealed class.
  72. * SubjectIdentifierType.cs: Fixed enum and added [Serializable].
  73. 2004-07-07 Sebastien Pouliot <[email protected]>
  74. * AlgorithmIdentifier.cs: Added missing #if NET_2_0.
  75. * ContentInfo.cs: Fixed OID due to changes in Mono.Security.
  76. * EnvelopedPkcs7.cs: Fixed OID due to changes in Mono.Security.
  77. * SignedPkcs7.cs: Fixed OID due to changes in Mono.Security.
  78. 2003-12-07 Sebastien Pouliot <[email protected]>
  79. * ContentInfo.cs: Modified default Oid not to include description.
  80. Added basic support for static GetContentType.
  81. * EnvelopedPkcs7.cs: New. Partial implementation of PKCS#7 envelopes
  82. (encrypted data).
  83. * KeyAgreeRecipientInfo.cs: New. Stub for key agreement informations.
  84. Note that key agreement algorithms (DH) are absent from the framework.
  85. * KeyTransRecipientInfo.cs: New. Implementation for key transport
  86. informations.
  87. * Pkcs7Recipient.cs: New. Implementation of "recipients" - how it
  88. links to a X.509 certificate (issuer and serial key or subject key
  89. info).
  90. * Pkcs7RecipientCollection.cs: New. Collection of Pkcs7Recipient.
  91. * Pkcs7RecipientEnumerator.cs: New. Enumerator for Pkcs7Recipient.
  92. * Pkcs7AttributeCollection.cs: New. Collection of Pkcs9Attributes.
  93. * Pkcs7AttributeEnumerator.cs: New. Enumerator for Pkcs9Attributes.
  94. * PublicKeyInfo.cs: New. Handle public key informations.
  95. * RecipientInfoCollection.cs: New. Collection of RecipientInfo (and
  96. inherited classes).
  97. * RecipientInfoEnumerator.cs: New. Enumerator for RecipientInfo (and
  98. inherited classes).
  99. * SignedPkcs7.cs: New. Partial implementation of PKCS#7 signed
  100. structures.
  101. * SignerInfo.cs: New. Information (certificate and attributes) about
  102. the signer. Actual signature/verification stuff is missing.
  103. * SignerInfoCollection.cs: New. Collection of SignerInfo.
  104. * SignerInfoEnumarator.cs: New. Enumerator for SignerInfo.
  105. * SubjectIdentifier.cs: New. Contains the type of identifier linking
  106. to a subject.
  107. * SubjectIdentifierOrKey.cs: New. Contains the subject's public key or
  108. an information linking to a subject public key.
  109. 2003-11-08 Sebastien Pouliot <[email protected]>
  110. * ContentInfo.cs: New. Class to encapsulate PKCS7 ContentInfo. Static
  111. method GetContentType need to be completed (requires some test vectors).
  112. * Pkcs7Signer.cs: New. Class to add attributes (authenticated and/or
  113. authenticated), certificates and other informations to the signature.
  114. * RecipientInfo.cs: New. Abstract class to encpasulate recipient
  115. informations.
  116. 2003-11-07 Sebastien Pouliot <[email protected]>
  117. * AlgorithmIdentifier.cs: New. Class to encapsulate PKCS7 AlgorithmIdentifier.
  118. * CryptographicAttribute.cs: Basic class for attributes.
  119. * KeyAgreeKeyChoice.cs: New. Enumeration for key agreement.
  120. * Pkcs9Attribute.cs: New. Base class for Pkcs#9 attributes.
  121. * Pkcs9DocumentDescription.cs: New. Pkcs#9 DocumentDescription attribute.
  122. * Pkcs9DocumentName.cs: New. Pkcs#9 DocumentName attribute.
  123. * Pkcs9SigningTime.cs: New. Pkcs#9 SigningTime attribute.
  124. * RecipientInfoType.cs: New. Enumeration for RecipientInfo.
  125. * RecipientSubType.cs: New. Enumeration for RecipientInfo.
  126. * SubjectIdentifierOrKeyType.cs: New. Enumeration for SubjectIdentifier.
  127. * SubjectIdentifierType.cs: New. Enumeration for SubjectIdentifier.