ChangeLog 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. 2005-01-17 Sebastien Pouliot <[email protected]>
  2. * Pkcs9Attribute.cs: Fixed wrt unit tests.
  3. * Pkcs9ContentType.cs: Completed public part. Internals are still
  4. todo later.
  5. * Pkcs9DocumentDescription.cs: Completed implementation.
  6. * Pkcs9DocumentName.cs: Completed implementation.
  7. * Pkcs9SigningTime.cs: Completed implementation.
  8. * Pkcs9MessageDigest.cs: Completed public part. Internals are still
  9. todo later.
  10. 2004-09-04 Tim Coleman <[email protected]>
  11. * Pkcs9ContentType.cs Pkcs9MessageDigest.cs:
  12. New classes for 2.0
  13. 2004-07-08 Sebastien Pouliot <[email protected]>
  14. * ContentInfo.cs: Added finalizer.
  15. * CmsRecipient.cs: New. Replace Pkcs7Recipient (from 1.2).
  16. * CmsRecipientCollection.cs: New. Replace Pkcs7RecipientCollection
  17. (from 1.2).
  18. * CmsRecipientEnumerator.cs: New. Replace Pkcs7RecipientEnumerator
  19. (from 1.2).
  20. * CmsSigner.cs: New. Replace Pkcs7Signer (from 1.2).
  21. * EnvelopedCms.cs: New. Replace EnvelopedPkcs7 (from 1.2).
  22. * KeyAgreeRecipientInfo.cs: Fixed internal constructor.
  23. * Pkcs9Attribute.cs: Now inherit from AsnEncodedData. Fixed
  24. constructors.
  25. * Pkcs9DocumentDescription.cs: Sealed class and fixed API.
  26. * Pkcs9DocumentName.cs: Sealed class and fixed API.
  27. * Pkcs9SigningTime.cs: Sealed class and fixed API.
  28. * PublicKeyInfo.cs: Sealed class.
  29. * RecipientInfo.cs: Removed protected constructor.
  30. * RecipientInfoCollection.cs: Sealed class.
  31. * RecipientInfoEnumerator.cs: Sealed class.
  32. * SignedCms.cs: New. Replace SignedPkcs7 (from 1.2).
  33. * SignerInfo.cs: Sealed class and fixed API.
  34. * SignerInfoCollection.cs: Sealed class and fixed CopyTo.
  35. * SignerInfoEnumerator.cs: Sealed class.
  36. * SubjectIdentifier.cs: Sealed class.
  37. * SubjectIdentifierOrKey.cs: Sealed class.
  38. * SubjectIdentifierType.cs: Fixed enum and added [Serializable].
  39. 2004-07-07 Sebastien Pouliot <[email protected]>
  40. * AlgorithmIdentifier.cs: Added missing #if NET_2_0.
  41. * ContentInfo.cs: Fixed OID due to changes in Mono.Security.
  42. * EnvelopedPkcs7.cs: Fixed OID due to changes in Mono.Security.
  43. * SignedPkcs7.cs: Fixed OID due to changes in Mono.Security.
  44. 2003-12-07 Sebastien Pouliot <[email protected]>
  45. * ContentInfo.cs: Modified default Oid not to include description.
  46. Added basic support for static GetContentType.
  47. * EnvelopedPkcs7.cs: New. Partial implementation of PKCS#7 envelopes
  48. (encrypted data).
  49. * KeyAgreeRecipientInfo.cs: New. Stub for key agreement informations.
  50. Note that key agreement algorithms (DH) are absent from the framework.
  51. * KeyTransRecipientInfo.cs: New. Implementation for key transport
  52. informations.
  53. * Pkcs7Recipient.cs: New. Implementation of "recipients" - how it
  54. links to a X.509 certificate (issuer and serial key or subject key
  55. info).
  56. * Pkcs7RecipientCollection.cs: New. Collection of Pkcs7Recipient.
  57. * Pkcs7RecipientEnumerator.cs: New. Enumerator for Pkcs7Recipient.
  58. * Pkcs7AttributeCollection.cs: New. Collection of Pkcs9Attributes.
  59. * Pkcs7AttributeEnumerator.cs: New. Enumerator for Pkcs9Attributes.
  60. * PublicKeyInfo.cs: New. Handle public key informations.
  61. * RecipientInfoCollection.cs: New. Collection of RecipientInfo (and
  62. inherited classes).
  63. * RecipientInfoEnumerator.cs: New. Enumerator for RecipientInfo (and
  64. inherited classes).
  65. * SignedPkcs7.cs: New. Partial implementation of PKCS#7 signed
  66. structures.
  67. * SignerInfo.cs: New. Information (certificate and attributes) about
  68. the signer. Actual signature/verification stuff is missing.
  69. * SignerInfoCollection.cs: New. Collection of SignerInfo.
  70. * SignerInfoEnumarator.cs: New. Enumerator for SignerInfo.
  71. * SubjectIdentifier.cs: New. Contains the type of identifier linking
  72. to a subject.
  73. * SubjectIdentifierOrKey.cs: New. Contains the subject's public key or
  74. an information linking to a subject public key.
  75. 2003-11-08 Sebastien Pouliot <[email protected]>
  76. * ContentInfo.cs: New. Class to encapsulate PKCS7 ContentInfo. Static
  77. method GetContentType need to be completed (requires some test vectors).
  78. * Pkcs7Signer.cs: New. Class to add attributes (authenticated and/or
  79. authenticated), certificates and other informations to the signature.
  80. * RecipientInfo.cs: New. Abstract class to encpasulate recipient
  81. informations.
  82. 2003-11-07 Sebastien Pouliot <[email protected]>
  83. * AlgorithmIdentifier.cs: New. Class to encapsulate PKCS7 AlgorithmIdentifier.
  84. * CryptographicAttribute.cs: Basic class for attributes.
  85. * KeyAgreeKeyChoice.cs: New. Enumeration for key agreement.
  86. * Pkcs9Attribute.cs: New. Base class for Pkcs#9 attributes.
  87. * Pkcs9DocumentDescription.cs: New. Pkcs#9 DocumentDescription attribute.
  88. * Pkcs9DocumentName.cs: New. Pkcs#9 DocumentName attribute.
  89. * Pkcs9SigningTime.cs: New. Pkcs#9 SigningTime attribute.
  90. * RecipientInfoType.cs: New. Enumeration for RecipientInfo.
  91. * RecipientSubType.cs: New. Enumeration for RecipientInfo.
  92. * SubjectIdentifierOrKeyType.cs: New. Enumeration for SubjectIdentifier.
  93. * SubjectIdentifierType.cs: New. Enumeration for SubjectIdentifier.