Lines Matching +full:no +full:- +full:cms
5 CMS_decrypt, CMS_decrypt_set1_pkey_and_peer, CMS_decrypt_set1_pkey - decrypt
6 content from a CMS envelopedData structure
10 #include <openssl/cms.h>
12 int CMS_decrypt(CMS_ContentInfo *cms, EVP_PKEY *pkey, X509 *cert,
14 int CMS_decrypt_set1_pkey_and_peer(CMS_ContentInfo *cms,
16 int CMS_decrypt_set1_pkey(CMS_ContentInfo *cms, EVP_PKEY *pk, X509 *cert);
20 CMS_decrypt() extracts and decrypts the content from a CMS EnvelopedData
30 the CMS_ContentInfo structure B<cms>.
33 certificate B<cert> with the CMS_ContentInfo structure B<cms>.
38 needed to locate the appropriate (of possible several) recipients in the CMS
44 not. If no recipient succeeds then a random symmetric key is used to decrypt
49 then the above behaviour is modified and an error B<is> returned if no
56 example looking them up in a database) and setting them in the CMS structure
57 in advance using the CMS utility functions such as CMS_set1_pkey(). In this
90 Copyright 2008-2020 The OpenSSL Project Authors. All Rights Reserved.