1 /* crypto/cms/cms_enc.c */
2 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
5 /* ====================================================================
6 * Copyright (c) 2008 The OpenSSL Project. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * licensing@OpenSSL.org.
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
34 * 6. Redistributions of any form whatsoever must retain the following
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
55 #include <openssl/asn1t.h>
56 #include <openssl/pem.h>
57 #include <openssl/x509v3.h>
58 #include <openssl/err.h>
59 #include <openssl/cms.h>
60 #include <openssl/rand.h>
63 /* CMS EncryptedData Utilities */
65 DECLARE_ASN1_ITEM(CMS_EncryptedData
)
67 /* Return BIO based on EncryptedContentInfo and key */
69 BIO
*cms_EncryptedContent_init_bio(CMS_EncryptedContentInfo
*ec
)
73 const EVP_CIPHER
*ciph
;
74 X509_ALGOR
*calg
= ec
->contentEncryptionAlgorithm
;
75 unsigned char iv
[EVP_MAX_IV_LENGTH
], *piv
= NULL
;
76 unsigned char *tkey
= NULL
;
81 int enc
, keep_key
= 0;
83 enc
= ec
->cipher
? 1 : 0;
85 b
= BIO_new(BIO_f_cipher());
88 CMSerr(CMS_F_CMS_ENCRYPTEDCONTENT_INIT_BIO
,
89 ERR_R_MALLOC_FAILURE
);
93 BIO_get_cipher_ctx(b
, &ctx
);
98 /* If not keeping key set cipher to NULL so subsequent calls
106 ciph
= EVP_get_cipherbyobj(calg
->algorithm
);
110 CMSerr(CMS_F_CMS_ENCRYPTEDCONTENT_INIT_BIO
,
111 CMS_R_UNKNOWN_CIPHER
);
116 if (EVP_CipherInit_ex(ctx
, ciph
, NULL
, NULL
, NULL
, enc
) <= 0)
118 CMSerr(CMS_F_CMS_ENCRYPTEDCONTENT_INIT_BIO
,
119 CMS_R_CIPHER_INITIALISATION_ERROR
);
126 calg
->algorithm
= OBJ_nid2obj(EVP_CIPHER_CTX_type(ctx
));
127 /* Generate a random IV if we need one */
128 ivlen
= EVP_CIPHER_CTX_iv_length(ctx
);
131 if (RAND_pseudo_bytes(iv
, ivlen
) <= 0)
136 else if (EVP_CIPHER_asn1_to_param(ctx
, calg
->parameter
) <= 0)
138 CMSerr(CMS_F_CMS_ENCRYPTEDCONTENT_INIT_BIO
,
139 CMS_R_CIPHER_PARAMETER_INITIALISATION_ERROR
);
142 tkeylen
= EVP_CIPHER_CTX_key_length(ctx
);
143 /* Generate random session key */
144 if (!enc
|| !ec
->key
)
146 tkey
= OPENSSL_malloc(tkeylen
);
149 CMSerr(CMS_F_CMS_ENCRYPTEDCONTENT_INIT_BIO
,
150 ERR_R_MALLOC_FAILURE
);
153 if (EVP_CIPHER_CTX_rand_key(ctx
, tkey
) <= 0)
160 ec
->keylen
= tkeylen
;
169 if (ec
->keylen
!= tkeylen
)
171 /* If necessary set key length */
172 if (EVP_CIPHER_CTX_set_key_length(ctx
, ec
->keylen
) <= 0)
174 /* Only reveal failure if debugging so we don't
175 * leak information which may be useful in MMA.
177 if (enc
|| ec
->debug
)
179 CMSerr(CMS_F_CMS_ENCRYPTEDCONTENT_INIT_BIO
,
180 CMS_R_INVALID_KEY_LENGTH
);
186 OPENSSL_cleanse(ec
->key
, ec
->keylen
);
187 OPENSSL_free(ec
->key
);
189 ec
->keylen
= tkeylen
;
196 if (EVP_CipherInit_ex(ctx
, NULL
, NULL
, ec
->key
, piv
, enc
) <= 0)
198 CMSerr(CMS_F_CMS_ENCRYPTEDCONTENT_INIT_BIO
,
199 CMS_R_CIPHER_INITIALISATION_ERROR
);
205 calg
->parameter
= ASN1_TYPE_new();
206 if (!calg
->parameter
)
208 CMSerr(CMS_F_CMS_ENCRYPTEDCONTENT_INIT_BIO
,
209 ERR_R_MALLOC_FAILURE
);
212 if (EVP_CIPHER_param_to_asn1(ctx
, calg
->parameter
) <= 0)
214 CMSerr(CMS_F_CMS_ENCRYPTEDCONTENT_INIT_BIO
,
215 CMS_R_CIPHER_PARAMETER_INITIALISATION_ERROR
);
222 if (ec
->key
&& !keep_key
)
224 OPENSSL_cleanse(ec
->key
, ec
->keylen
);
225 OPENSSL_free(ec
->key
);
230 OPENSSL_cleanse(tkey
, tkeylen
);
239 int cms_EncryptedContent_init(CMS_EncryptedContentInfo
*ec
,
240 const EVP_CIPHER
*cipher
,
241 const unsigned char *key
, size_t keylen
)
246 ec
->key
= OPENSSL_malloc(keylen
);
249 memcpy(ec
->key
, key
, keylen
);
253 ec
->contentType
= OBJ_nid2obj(NID_pkcs7_data
);
257 int CMS_EncryptedData_set1_key(CMS_ContentInfo
*cms
, const EVP_CIPHER
*ciph
,
258 const unsigned char *key
, size_t keylen
)
260 CMS_EncryptedContentInfo
*ec
;
263 CMSerr(CMS_F_CMS_ENCRYPTEDDATA_SET1_KEY
, CMS_R_NO_KEY
);
268 cms
->d
.encryptedData
= M_ASN1_new_of(CMS_EncryptedData
);
269 if (!cms
->d
.encryptedData
)
271 CMSerr(CMS_F_CMS_ENCRYPTEDDATA_SET1_KEY
,
272 ERR_R_MALLOC_FAILURE
);
275 cms
->contentType
= OBJ_nid2obj(NID_pkcs7_encrypted
);
276 cms
->d
.encryptedData
->version
= 0;
278 else if (OBJ_obj2nid(cms
->contentType
) != NID_pkcs7_encrypted
)
280 CMSerr(CMS_F_CMS_ENCRYPTEDDATA_SET1_KEY
,
281 CMS_R_NOT_ENCRYPTED_DATA
);
284 ec
= cms
->d
.encryptedData
->encryptedContentInfo
;
285 return cms_EncryptedContent_init(ec
, ciph
, key
, keylen
);
288 BIO
*cms_EncryptedData_init_bio(CMS_ContentInfo
*cms
)
290 CMS_EncryptedData
*enc
= cms
->d
.encryptedData
;
291 if (enc
->encryptedContentInfo
->cipher
&& enc
->unprotectedAttrs
)
293 return cms_EncryptedContent_init_bio(enc
->encryptedContentInfo
);