Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
NAME
PKCS7_set_content, PKCS7_content_new — set the nested contentInfo in a PKCS#7 structureSYNOPSIS
#include <openssl/pkcs7.h>PKCS7_set_content(PKCS7 *outer, PKCS7 *inner);
PKCS7_content_new(PKCS7 *outer, int inner_type);
DESCRIPTION
If the contentType of the outer PKCS7 structure is SignedData or DigestedData, PKCS7_set_content() sets the contentInfo field of the content field of outer to inner, without copying inner. If there was previous contentInfo, it is freed rather than overwritten. The rest of the internal state of outer and of its content remains unchanged.RETURN VALUES
These functions return 1 on success or 0 on failure. They fail if the contentType of outer is unsupported. PKCS7_content_new() can also fail when memory is exhausted. In case of failure, outer remains unchanged.STANDARDS
RFC 2315: PKCS #7: Cryptographic Message Syntax Version 1.5- Section 7. General syntax
- Section 9. Signed-data content type
- Section 12. Digested-data content type