sl@0
|
1 |
/* p5_pbev2.c */
|
sl@0
|
2 |
/* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
|
sl@0
|
3 |
* project 1999-2004.
|
sl@0
|
4 |
*/
|
sl@0
|
5 |
/* ====================================================================
|
sl@0
|
6 |
* Copyright (c) 1999 The OpenSSL Project. All rights reserved.
|
sl@0
|
7 |
*
|
sl@0
|
8 |
* Redistribution and use in source and binary forms, with or without
|
sl@0
|
9 |
* modification, are permitted provided that the following conditions
|
sl@0
|
10 |
* are met:
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* 1. Redistributions of source code must retain the above copyright
|
sl@0
|
13 |
* notice, this list of conditions and the following disclaimer.
|
sl@0
|
14 |
*
|
sl@0
|
15 |
* 2. Redistributions in binary form must reproduce the above copyright
|
sl@0
|
16 |
* notice, this list of conditions and the following disclaimer in
|
sl@0
|
17 |
* the documentation and/or other materials provided with the
|
sl@0
|
18 |
* distribution.
|
sl@0
|
19 |
*
|
sl@0
|
20 |
* 3. All advertising materials mentioning features or use of this
|
sl@0
|
21 |
* software must display the following acknowledgment:
|
sl@0
|
22 |
* "This product includes software developed by the OpenSSL Project
|
sl@0
|
23 |
* for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
|
sl@0
|
24 |
*
|
sl@0
|
25 |
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
sl@0
|
26 |
* endorse or promote products derived from this software without
|
sl@0
|
27 |
* prior written permission. For written permission, please contact
|
sl@0
|
28 |
* licensing@OpenSSL.org.
|
sl@0
|
29 |
*
|
sl@0
|
30 |
* 5. Products derived from this software may not be called "OpenSSL"
|
sl@0
|
31 |
* nor may "OpenSSL" appear in their names without prior written
|
sl@0
|
32 |
* permission of the OpenSSL Project.
|
sl@0
|
33 |
*
|
sl@0
|
34 |
* 6. Redistributions of any form whatsoever must retain the following
|
sl@0
|
35 |
* acknowledgment:
|
sl@0
|
36 |
* "This product includes software developed by the OpenSSL Project
|
sl@0
|
37 |
* for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
|
sl@0
|
38 |
*
|
sl@0
|
39 |
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
sl@0
|
40 |
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
sl@0
|
41 |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
sl@0
|
42 |
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
sl@0
|
43 |
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
sl@0
|
44 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
sl@0
|
45 |
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
sl@0
|
46 |
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
sl@0
|
47 |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
sl@0
|
48 |
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
sl@0
|
49 |
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
sl@0
|
50 |
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
sl@0
|
51 |
* ====================================================================
|
sl@0
|
52 |
*
|
sl@0
|
53 |
* This product includes cryptographic software written by Eric Young
|
sl@0
|
54 |
* (eay@cryptsoft.com). This product includes software written by Tim
|
sl@0
|
55 |
* Hudson (tjh@cryptsoft.com).
|
sl@0
|
56 |
*
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
|
sl@0
|
59 |
#include <stdio.h>
|
sl@0
|
60 |
#include "cryptlib.h"
|
sl@0
|
61 |
#include <openssl/asn1t.h>
|
sl@0
|
62 |
#include <openssl/x509.h>
|
sl@0
|
63 |
#include <openssl/rand.h>
|
sl@0
|
64 |
|
sl@0
|
65 |
/* PKCS#5 v2.0 password based encryption structures */
|
sl@0
|
66 |
|
sl@0
|
67 |
ASN1_SEQUENCE(PBE2PARAM) = {
|
sl@0
|
68 |
ASN1_SIMPLE(PBE2PARAM, keyfunc, X509_ALGOR),
|
sl@0
|
69 |
ASN1_SIMPLE(PBE2PARAM, encryption, X509_ALGOR)
|
sl@0
|
70 |
} ASN1_SEQUENCE_END(PBE2PARAM)
|
sl@0
|
71 |
|
sl@0
|
72 |
IMPLEMENT_ASN1_FUNCTIONS(PBE2PARAM)
|
sl@0
|
73 |
|
sl@0
|
74 |
ASN1_SEQUENCE(PBKDF2PARAM) = {
|
sl@0
|
75 |
ASN1_SIMPLE(PBKDF2PARAM, salt, ASN1_ANY),
|
sl@0
|
76 |
ASN1_SIMPLE(PBKDF2PARAM, iter, ASN1_INTEGER),
|
sl@0
|
77 |
ASN1_OPT(PBKDF2PARAM, keylength, ASN1_INTEGER),
|
sl@0
|
78 |
ASN1_OPT(PBKDF2PARAM, prf, X509_ALGOR)
|
sl@0
|
79 |
} ASN1_SEQUENCE_END(PBKDF2PARAM)
|
sl@0
|
80 |
|
sl@0
|
81 |
IMPLEMENT_ASN1_FUNCTIONS(PBKDF2PARAM)
|
sl@0
|
82 |
|
sl@0
|
83 |
/* Return an algorithm identifier for a PKCS#5 v2.0 PBE algorithm:
|
sl@0
|
84 |
* yes I know this is horrible!
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
|
sl@0
|
87 |
EXPORT_C X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter,
|
sl@0
|
88 |
unsigned char *salt, int saltlen)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
X509_ALGOR *scheme = NULL, *kalg = NULL, *ret = NULL;
|
sl@0
|
91 |
int alg_nid;
|
sl@0
|
92 |
EVP_CIPHER_CTX ctx;
|
sl@0
|
93 |
unsigned char iv[EVP_MAX_IV_LENGTH];
|
sl@0
|
94 |
PBKDF2PARAM *kdf = NULL;
|
sl@0
|
95 |
PBE2PARAM *pbe2 = NULL;
|
sl@0
|
96 |
ASN1_OCTET_STRING *osalt = NULL;
|
sl@0
|
97 |
ASN1_OBJECT *obj;
|
sl@0
|
98 |
|
sl@0
|
99 |
alg_nid = EVP_CIPHER_type(cipher);
|
sl@0
|
100 |
if(alg_nid == NID_undef) {
|
sl@0
|
101 |
ASN1err(ASN1_F_PKCS5_PBE2_SET,
|
sl@0
|
102 |
ASN1_R_CIPHER_HAS_NO_OBJECT_IDENTIFIER);
|
sl@0
|
103 |
goto err;
|
sl@0
|
104 |
}
|
sl@0
|
105 |
obj = OBJ_nid2obj(alg_nid);
|
sl@0
|
106 |
|
sl@0
|
107 |
if(!(pbe2 = PBE2PARAM_new())) goto merr;
|
sl@0
|
108 |
|
sl@0
|
109 |
/* Setup the AlgorithmIdentifier for the encryption scheme */
|
sl@0
|
110 |
scheme = pbe2->encryption;
|
sl@0
|
111 |
|
sl@0
|
112 |
scheme->algorithm = obj;
|
sl@0
|
113 |
if(!(scheme->parameter = ASN1_TYPE_new())) goto merr;
|
sl@0
|
114 |
|
sl@0
|
115 |
/* Create random IV */
|
sl@0
|
116 |
if (EVP_CIPHER_iv_length(cipher) &&
|
sl@0
|
117 |
RAND_pseudo_bytes(iv, EVP_CIPHER_iv_length(cipher)) < 0)
|
sl@0
|
118 |
goto err;
|
sl@0
|
119 |
|
sl@0
|
120 |
EVP_CIPHER_CTX_init(&ctx);
|
sl@0
|
121 |
|
sl@0
|
122 |
/* Dummy cipherinit to just setup the IV */
|
sl@0
|
123 |
EVP_CipherInit_ex(&ctx, cipher, NULL, NULL, iv, 0);
|
sl@0
|
124 |
if(EVP_CIPHER_param_to_asn1(&ctx, scheme->parameter) < 0) {
|
sl@0
|
125 |
ASN1err(ASN1_F_PKCS5_PBE2_SET,
|
sl@0
|
126 |
ASN1_R_ERROR_SETTING_CIPHER_PARAMS);
|
sl@0
|
127 |
EVP_CIPHER_CTX_cleanup(&ctx);
|
sl@0
|
128 |
goto err;
|
sl@0
|
129 |
}
|
sl@0
|
130 |
EVP_CIPHER_CTX_cleanup(&ctx);
|
sl@0
|
131 |
|
sl@0
|
132 |
if(!(kdf = PBKDF2PARAM_new())) goto merr;
|
sl@0
|
133 |
if(!(osalt = M_ASN1_OCTET_STRING_new())) goto merr;
|
sl@0
|
134 |
|
sl@0
|
135 |
if (!saltlen) saltlen = PKCS5_SALT_LEN;
|
sl@0
|
136 |
if (!(osalt->data = OPENSSL_malloc (saltlen))) goto merr;
|
sl@0
|
137 |
osalt->length = saltlen;
|
sl@0
|
138 |
if (salt) memcpy (osalt->data, salt, saltlen);
|
sl@0
|
139 |
else if (RAND_pseudo_bytes (osalt->data, saltlen) < 0) goto merr;
|
sl@0
|
140 |
|
sl@0
|
141 |
if(iter <= 0) iter = PKCS5_DEFAULT_ITER;
|
sl@0
|
142 |
if(!ASN1_INTEGER_set(kdf->iter, iter)) goto merr;
|
sl@0
|
143 |
|
sl@0
|
144 |
/* Now include salt in kdf structure */
|
sl@0
|
145 |
kdf->salt->value.octet_string = osalt;
|
sl@0
|
146 |
kdf->salt->type = V_ASN1_OCTET_STRING;
|
sl@0
|
147 |
osalt = NULL;
|
sl@0
|
148 |
|
sl@0
|
149 |
/* If its RC2 then we'd better setup the key length */
|
sl@0
|
150 |
|
sl@0
|
151 |
if(alg_nid == NID_rc2_cbc) {
|
sl@0
|
152 |
if(!(kdf->keylength = M_ASN1_INTEGER_new())) goto merr;
|
sl@0
|
153 |
if(!ASN1_INTEGER_set (kdf->keylength,
|
sl@0
|
154 |
EVP_CIPHER_key_length(cipher))) goto merr;
|
sl@0
|
155 |
}
|
sl@0
|
156 |
|
sl@0
|
157 |
/* prf can stay NULL because we are using hmacWithSHA1 */
|
sl@0
|
158 |
|
sl@0
|
159 |
/* Now setup the PBE2PARAM keyfunc structure */
|
sl@0
|
160 |
|
sl@0
|
161 |
pbe2->keyfunc->algorithm = OBJ_nid2obj(NID_id_pbkdf2);
|
sl@0
|
162 |
|
sl@0
|
163 |
/* Encode PBKDF2PARAM into parameter of pbe2 */
|
sl@0
|
164 |
|
sl@0
|
165 |
if(!(pbe2->keyfunc->parameter = ASN1_TYPE_new())) goto merr;
|
sl@0
|
166 |
|
sl@0
|
167 |
if(!ASN1_pack_string_of(PBKDF2PARAM, kdf, i2d_PBKDF2PARAM,
|
sl@0
|
168 |
&pbe2->keyfunc->parameter->value.sequence)) goto merr;
|
sl@0
|
169 |
pbe2->keyfunc->parameter->type = V_ASN1_SEQUENCE;
|
sl@0
|
170 |
|
sl@0
|
171 |
PBKDF2PARAM_free(kdf);
|
sl@0
|
172 |
kdf = NULL;
|
sl@0
|
173 |
|
sl@0
|
174 |
/* Now set up top level AlgorithmIdentifier */
|
sl@0
|
175 |
|
sl@0
|
176 |
if(!(ret = X509_ALGOR_new())) goto merr;
|
sl@0
|
177 |
if(!(ret->parameter = ASN1_TYPE_new())) goto merr;
|
sl@0
|
178 |
|
sl@0
|
179 |
ret->algorithm = OBJ_nid2obj(NID_pbes2);
|
sl@0
|
180 |
|
sl@0
|
181 |
/* Encode PBE2PARAM into parameter */
|
sl@0
|
182 |
|
sl@0
|
183 |
if(!ASN1_pack_string_of(PBE2PARAM, pbe2, i2d_PBE2PARAM,
|
sl@0
|
184 |
&ret->parameter->value.sequence)) goto merr;
|
sl@0
|
185 |
ret->parameter->type = V_ASN1_SEQUENCE;
|
sl@0
|
186 |
|
sl@0
|
187 |
PBE2PARAM_free(pbe2);
|
sl@0
|
188 |
pbe2 = NULL;
|
sl@0
|
189 |
|
sl@0
|
190 |
return ret;
|
sl@0
|
191 |
|
sl@0
|
192 |
merr:
|
sl@0
|
193 |
ASN1err(ASN1_F_PKCS5_PBE2_SET,ERR_R_MALLOC_FAILURE);
|
sl@0
|
194 |
|
sl@0
|
195 |
err:
|
sl@0
|
196 |
PBE2PARAM_free(pbe2);
|
sl@0
|
197 |
/* Note 'scheme' is freed as part of pbe2 */
|
sl@0
|
198 |
M_ASN1_OCTET_STRING_free(osalt);
|
sl@0
|
199 |
PBKDF2PARAM_free(kdf);
|
sl@0
|
200 |
X509_ALGOR_free(kalg);
|
sl@0
|
201 |
X509_ALGOR_free(ret);
|
sl@0
|
202 |
|
sl@0
|
203 |
return NULL;
|
sl@0
|
204 |
|
sl@0
|
205 |
}
|