blob: ac477b1f008269cc72760df169c0cad142551274 [file] [log] [blame]
Dave Rodgmand12b5922023-03-10 15:07:21 +00001Features
Dave Rodgman3fe2abf2023-03-10 17:05:54 +00002 * Added partial support for parsing the PKCS #7 Cryptographic Message
3 Syntax, as defined in RFC 2315. Currently, support is limited to the
Dave Rodgmand12b5922023-03-10 15:07:21 +00004 following:
Dave Rodgman3fe2abf2023-03-10 17:05:54 +00005 - Only the signed-data content type, version 1 is supported.
Dave Rodgmand12b5922023-03-10 15:07:21 +00006 - 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.
Dave Rodgman3fe2abf2023-03-10 17:05:54 +000010 - There is no support for certificate revocation lists.
Dave Rodgmand12b5922023-03-10 15:07:21 +000011 - 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
Dave Rodgman3fe2abf2023-03-10 17:05:54 +000015 various improvements, tests and bug fixes.