blob: a988e95859c017876e05cfc6c9bc6102fd55d559 [file] [log] [blame]
Dave Rodgmand12b5922023-03-10 15:07:21 +00001Features
2 * Added partial support for parsing the PKCS #7 cryptographic message
3 syntax, as defined in RFC 2315. Currently, support is limited to the
4 following:
5 - Only the signed data content type, version 1 is supported.
6 - Only DER encoding is supported.
7 - Only a single digest algorithm per message is supported.
8 - Only 0 or 1 certificates are supported per message, which must be in
9 X.509 format.
10 - There is no support for certificate-revocation lists.
11 - The authenticated and unauthenticated attribute fields of SignerInfo
12 must be empty.
13 Many thanks to Daniel Axtens, Nayna Jain, and Nick Child from IBM for
14 contributing this feature. Thanks to Demi-Marie Obenour for contributing
15 various improvements, tests and bug-fixes.