CMS_ENCRYPT(3) | Library Functions Manual | CMS_ENCRYPT(3) |
CMS_encrypt
—
create a CMS EnvelopedData structure
#include
<openssl/cms.h>
CMS_ContentInfo *
CMS_encrypt
(STACK_OF(X509)
*certificates, BIO *in, const
EVP_CIPHER *cipher, unsigned int flags);
CMS_encrypt
()
creates a CMS EnvelopedData structure, encrypting the
content provided by in.
The recipient certificates are added as
KeyTransRecipientInfo structures by calling the
function
CMS_add1_recipient_cert(3)
internally. Only certificates carrying RSA, Diffie-Hellman or EC keys are
supported by this function. The certificates argument
can be set to NULL
if the
CMS_PARTIAL
flag is set and recipients are added
later using
CMS_add1_recipient_cert(3)
or
CMS_add0_recipient_key(3).
cipher is the symmetric cipher to use. It must support ASN.1 encoding of its parameters. EVP_des_ede3_cbc(3) (triple DES) is the algorithm of choice for S/MIME use because most clients support it.
Many browsers implement a "sign and
encrypt" option which is simply an S/MIME
EnvelopedData containing an S/MIME signed message.
This can be readily produced by storing the S/MIME signed message in a
memory BIO and passing it to
CMS_encrypt
().
The following flags can be passed in the flags parameter:
CMS_TEXT
CMS_BINARY
CMS_BINARY
is set,
then CMS_TEXT
is ignored.CMS_USE_KEYID
CMS_STREAM
CMS_PARTIAL
CMS_DETACHED
CMS_encrypt
() returns either a
CMS_ContentInfo structure or
NULL
if an error occurred. The error can be obtained
from ERR_get_error(3).
CMS_add0_cert(3), CMS_add1_recipient_cert(3), CMS_ContentInfo_new(3), CMS_decrypt(3)
RFC 5652: Cryptographic Message Syntax (CMS)
CMS_encrypt
() first appeared in OpenSSL
0.9.8h and has been available since OpenBSD 6.7.
The CMS_STREAM
flag first appeared in
OpenSSL 1.0.0.
November 2, 2019 | OpenBSD-current |