/src/openssl32/crypto/asn1/p5_pbev2.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 1999-2023 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * |
4 | | * Licensed under the Apache License 2.0 (the "License"). You may not use |
5 | | * this file except in compliance with the License. You can obtain a copy |
6 | | * in the file LICENSE in the source distribution or at |
7 | | * https://www.openssl.org/source/license.html |
8 | | */ |
9 | | |
10 | | #include <stdio.h> |
11 | | #include "internal/cryptlib.h" |
12 | | #include "crypto/asn1.h" |
13 | | #include "crypto/evp.h" |
14 | | #include <openssl/asn1t.h> |
15 | | #include <openssl/core.h> |
16 | | #include <openssl/core_names.h> |
17 | | #include <openssl/x509.h> |
18 | | #include <openssl/rand.h> |
19 | | |
20 | | /* PKCS#5 v2.0 password based encryption structures */ |
21 | | |
22 | | ASN1_SEQUENCE(PBE2PARAM) = { |
23 | | ASN1_SIMPLE(PBE2PARAM, keyfunc, X509_ALGOR), |
24 | | ASN1_SIMPLE(PBE2PARAM, encryption, X509_ALGOR) |
25 | | } ASN1_SEQUENCE_END(PBE2PARAM) |
26 | | |
27 | | IMPLEMENT_ASN1_FUNCTIONS(PBE2PARAM) |
28 | | |
29 | | ASN1_SEQUENCE(PBKDF2PARAM) = { |
30 | | ASN1_SIMPLE(PBKDF2PARAM, salt, ASN1_ANY), |
31 | | ASN1_SIMPLE(PBKDF2PARAM, iter, ASN1_INTEGER), |
32 | | ASN1_OPT(PBKDF2PARAM, keylength, ASN1_INTEGER), |
33 | | ASN1_OPT(PBKDF2PARAM, prf, X509_ALGOR) |
34 | | } ASN1_SEQUENCE_END(PBKDF2PARAM) |
35 | | |
36 | | IMPLEMENT_ASN1_FUNCTIONS(PBKDF2PARAM) |
37 | | |
38 | | /* |
39 | | * Return an algorithm identifier for a PKCS#5 v2.0 PBE algorithm: yes I know |
40 | | * this is horrible! Extended version to allow application supplied PRF NID |
41 | | * and IV. |
42 | | */ |
43 | | |
44 | | X509_ALGOR *PKCS5_pbe2_set_iv_ex(const EVP_CIPHER *cipher, int iter, |
45 | | unsigned char *salt, int saltlen, |
46 | | unsigned char *aiv, int prf_nid, |
47 | | OSSL_LIB_CTX *libctx) |
48 | 0 | { |
49 | 0 | X509_ALGOR *scheme = NULL, *ret = NULL; |
50 | 0 | int alg_nid, keylen, ivlen; |
51 | 0 | EVP_CIPHER_CTX *ctx = NULL; |
52 | 0 | unsigned char iv[EVP_MAX_IV_LENGTH]; |
53 | 0 | PBE2PARAM *pbe2 = NULL; |
54 | |
|
55 | 0 | alg_nid = EVP_CIPHER_get_type(cipher); |
56 | 0 | if (alg_nid == NID_undef) { |
57 | 0 | ERR_raise(ERR_LIB_ASN1, ASN1_R_CIPHER_HAS_NO_OBJECT_IDENTIFIER); |
58 | 0 | goto err; |
59 | 0 | } |
60 | | |
61 | 0 | if ((pbe2 = PBE2PARAM_new()) == NULL) { |
62 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_ASN1_LIB); |
63 | 0 | goto err; |
64 | 0 | } |
65 | | |
66 | | /* Setup the AlgorithmIdentifier for the encryption scheme */ |
67 | 0 | scheme = pbe2->encryption; |
68 | 0 | scheme->algorithm = OBJ_nid2obj(alg_nid); |
69 | 0 | if ((scheme->parameter = ASN1_TYPE_new()) == NULL) { |
70 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_ASN1_LIB); |
71 | 0 | goto err; |
72 | 0 | } |
73 | | |
74 | | /* Create random IV */ |
75 | 0 | ivlen = EVP_CIPHER_get_iv_length(cipher); |
76 | 0 | if (ivlen > 0) { |
77 | 0 | if (aiv) |
78 | 0 | memcpy(iv, aiv, ivlen); |
79 | 0 | else if (RAND_bytes_ex(libctx, iv, ivlen, 0) <= 0) |
80 | 0 | goto err; |
81 | 0 | } |
82 | | |
83 | 0 | ctx = EVP_CIPHER_CTX_new(); |
84 | 0 | if (ctx == NULL) { |
85 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_EVP_LIB); |
86 | 0 | goto err; |
87 | 0 | } |
88 | | |
89 | | /* Dummy cipherinit to just setup the IV, and PRF */ |
90 | 0 | if (!EVP_CipherInit_ex(ctx, cipher, NULL, NULL, iv, 0)) |
91 | 0 | goto err; |
92 | 0 | if (EVP_CIPHER_param_to_asn1(ctx, scheme->parameter) <= 0) { |
93 | 0 | ERR_raise(ERR_LIB_ASN1, ASN1_R_ERROR_SETTING_CIPHER_PARAMS); |
94 | 0 | goto err; |
95 | 0 | } |
96 | | /* |
97 | | * If prf NID unspecified see if cipher has a preference. An error is OK |
98 | | * here: just means use default PRF. |
99 | | */ |
100 | 0 | ERR_set_mark(); |
101 | 0 | if ((prf_nid == -1) && |
102 | 0 | EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_PBE_PRF_NID, 0, &prf_nid) <= 0) { |
103 | 0 | prf_nid = NID_hmacWithSHA256; |
104 | 0 | } |
105 | 0 | ERR_pop_to_mark(); |
106 | 0 | EVP_CIPHER_CTX_free(ctx); |
107 | 0 | ctx = NULL; |
108 | | |
109 | | /* If its RC2 then we'd better setup the key length */ |
110 | |
|
111 | 0 | if (alg_nid == NID_rc2_cbc) |
112 | 0 | keylen = EVP_CIPHER_get_key_length(cipher); |
113 | 0 | else |
114 | 0 | keylen = -1; |
115 | | |
116 | | /* Setup keyfunc */ |
117 | |
|
118 | 0 | X509_ALGOR_free(pbe2->keyfunc); |
119 | |
|
120 | 0 | pbe2->keyfunc = PKCS5_pbkdf2_set_ex(iter, salt, saltlen, prf_nid, keylen, |
121 | 0 | libctx); |
122 | |
|
123 | 0 | if (pbe2->keyfunc == NULL) { |
124 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_ASN1_LIB); |
125 | 0 | goto err; |
126 | 0 | } |
127 | | |
128 | | /* Now set up top level AlgorithmIdentifier */ |
129 | | |
130 | 0 | if ((ret = X509_ALGOR_new()) == NULL) { |
131 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_X509_LIB); |
132 | 0 | goto err; |
133 | 0 | } |
134 | | |
135 | 0 | ret->algorithm = OBJ_nid2obj(NID_pbes2); |
136 | | |
137 | | /* Encode PBE2PARAM into parameter */ |
138 | |
|
139 | 0 | if (!ASN1_TYPE_pack_sequence(ASN1_ITEM_rptr(PBE2PARAM), pbe2, |
140 | 0 | &ret->parameter)) { |
141 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_ASN1_LIB); |
142 | 0 | goto err; |
143 | 0 | } |
144 | | |
145 | 0 | PBE2PARAM_free(pbe2); |
146 | 0 | pbe2 = NULL; |
147 | |
|
148 | 0 | return ret; |
149 | | |
150 | 0 | err: |
151 | 0 | EVP_CIPHER_CTX_free(ctx); |
152 | 0 | PBE2PARAM_free(pbe2); |
153 | | /* Note 'scheme' is freed as part of pbe2 */ |
154 | 0 | X509_ALGOR_free(ret); |
155 | |
|
156 | 0 | return NULL; |
157 | 0 | } |
158 | | |
159 | | X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter, |
160 | | unsigned char *salt, int saltlen, |
161 | | unsigned char *aiv, int prf_nid) |
162 | 0 | { |
163 | 0 | return PKCS5_pbe2_set_iv_ex(cipher, iter, salt, saltlen, aiv, prf_nid, |
164 | 0 | NULL); |
165 | 0 | } |
166 | | |
167 | | X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter, |
168 | | unsigned char *salt, int saltlen) |
169 | 0 | { |
170 | 0 | return PKCS5_pbe2_set_iv_ex(cipher, iter, salt, saltlen, NULL, -1, |
171 | 0 | NULL); |
172 | 0 | } |
173 | | |
174 | | |
175 | | X509_ALGOR *PKCS5_pbkdf2_set_ex(int iter, unsigned char *salt, int saltlen, |
176 | | int prf_nid, int keylen, |
177 | | OSSL_LIB_CTX *libctx) |
178 | 0 | { |
179 | 0 | X509_ALGOR *keyfunc = NULL; |
180 | 0 | PBKDF2PARAM *kdf = NULL; |
181 | 0 | ASN1_OCTET_STRING *osalt = NULL; |
182 | |
|
183 | 0 | if ((kdf = PBKDF2PARAM_new()) == NULL) { |
184 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_ASN1_LIB); |
185 | 0 | goto err; |
186 | 0 | } |
187 | 0 | if ((osalt = ASN1_OCTET_STRING_new()) == NULL) { |
188 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_ASN1_LIB); |
189 | 0 | goto err; |
190 | 0 | } |
191 | | |
192 | 0 | kdf->salt->value.octet_string = osalt; |
193 | 0 | kdf->salt->type = V_ASN1_OCTET_STRING; |
194 | |
|
195 | 0 | if (saltlen < 0) { |
196 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_PASSED_INVALID_ARGUMENT); |
197 | 0 | goto err; |
198 | 0 | } |
199 | 0 | if (saltlen == 0) |
200 | 0 | saltlen = PKCS5_DEFAULT_PBE2_SALT_LEN; |
201 | 0 | if ((osalt->data = OPENSSL_malloc(saltlen)) == NULL) |
202 | 0 | goto err; |
203 | | |
204 | | |
205 | 0 | osalt->length = saltlen; |
206 | |
|
207 | 0 | if (salt) { |
208 | 0 | memcpy(osalt->data, salt, saltlen); |
209 | 0 | } else if (RAND_bytes_ex(libctx, osalt->data, saltlen, 0) <= 0) { |
210 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_RAND_LIB); |
211 | 0 | goto err; |
212 | 0 | } |
213 | | |
214 | 0 | if (iter <= 0) |
215 | 0 | iter = PKCS5_DEFAULT_ITER; |
216 | |
|
217 | 0 | if (!ASN1_INTEGER_set(kdf->iter, iter)) { |
218 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_ASN1_LIB); |
219 | 0 | goto err; |
220 | 0 | } |
221 | | |
222 | | /* If have a key len set it up */ |
223 | | |
224 | 0 | if (keylen > 0) { |
225 | 0 | if ((kdf->keylength = ASN1_INTEGER_new()) == NULL) { |
226 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_ASN1_LIB); |
227 | 0 | goto err; |
228 | 0 | } |
229 | 0 | if (!ASN1_INTEGER_set(kdf->keylength, keylen)) { |
230 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_ASN1_LIB); |
231 | 0 | goto err; |
232 | 0 | } |
233 | 0 | } |
234 | | |
235 | | /* prf can stay NULL if we are using hmacWithSHA1 */ |
236 | 0 | if (prf_nid > 0 && prf_nid != NID_hmacWithSHA1) { |
237 | 0 | kdf->prf = ossl_X509_ALGOR_from_nid(prf_nid, V_ASN1_NULL, NULL); |
238 | 0 | if (kdf->prf == NULL) { |
239 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_X509_LIB); |
240 | 0 | goto err; |
241 | 0 | } |
242 | 0 | } |
243 | | |
244 | | /* Finally setup the keyfunc structure */ |
245 | | |
246 | 0 | keyfunc = X509_ALGOR_new(); |
247 | 0 | if (keyfunc == NULL) { |
248 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_X509_LIB); |
249 | 0 | goto err; |
250 | 0 | } |
251 | | |
252 | 0 | keyfunc->algorithm = OBJ_nid2obj(NID_id_pbkdf2); |
253 | | |
254 | | /* Encode PBKDF2PARAM into parameter of pbe2 */ |
255 | |
|
256 | 0 | if (!ASN1_TYPE_pack_sequence(ASN1_ITEM_rptr(PBKDF2PARAM), kdf, |
257 | 0 | &keyfunc->parameter)) { |
258 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_ASN1_LIB); |
259 | 0 | goto err; |
260 | 0 | } |
261 | | |
262 | 0 | PBKDF2PARAM_free(kdf); |
263 | 0 | return keyfunc; |
264 | | |
265 | 0 | err: |
266 | 0 | PBKDF2PARAM_free(kdf); |
267 | 0 | X509_ALGOR_free(keyfunc); |
268 | 0 | return NULL; |
269 | 0 | } |
270 | | |
271 | | X509_ALGOR *PKCS5_pbkdf2_set(int iter, unsigned char *salt, int saltlen, |
272 | | int prf_nid, int keylen) |
273 | 0 | { |
274 | 0 | return PKCS5_pbkdf2_set_ex(iter, salt, saltlen, prf_nid, keylen, NULL); |
275 | 0 | } |
276 | | |