/src/openssl/crypto/evp/p5_crpt2.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright 1999-2025 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 <stdlib.h> |
12 | | #include "internal/cryptlib.h" |
13 | | #include <openssl/x509.h> |
14 | | #include <openssl/evp.h> |
15 | | #include <openssl/kdf.h> |
16 | | #include <openssl/hmac.h> |
17 | | #include <openssl/trace.h> |
18 | | #include <openssl/core_names.h> |
19 | | #include "crypto/evp.h" |
20 | | #include "evp_local.h" |
21 | | |
22 | | int ossl_pkcs5_pbkdf2_hmac_ex(const char *pass, int passlen, |
23 | | const unsigned char *salt, int saltlen, int iter, |
24 | | const EVP_MD *digest, int keylen, unsigned char *out, |
25 | | OSSL_LIB_CTX *libctx, const char *propq) |
26 | 0 | { |
27 | 0 | const char *empty = ""; |
28 | 0 | int rv = 1, mode = 1; |
29 | 0 | EVP_KDF *kdf; |
30 | 0 | EVP_KDF_CTX *kctx; |
31 | 0 | const char *mdname = EVP_MD_get0_name(digest); |
32 | 0 | OSSL_PARAM params[6], *p = params; |
33 | | |
34 | | /* Keep documented behaviour. */ |
35 | 0 | if (pass == NULL) { |
36 | 0 | pass = empty; |
37 | 0 | passlen = 0; |
38 | 0 | } else if (passlen == -1) { |
39 | 0 | passlen = (int)strlen(pass); |
40 | 0 | } |
41 | 0 | if (salt == NULL && saltlen == 0) |
42 | 0 | salt = (unsigned char *)empty; |
43 | |
|
44 | 0 | kdf = EVP_KDF_fetch(libctx, OSSL_KDF_NAME_PBKDF2, propq); |
45 | 0 | if (kdf == NULL) |
46 | 0 | return 0; |
47 | 0 | kctx = EVP_KDF_CTX_new(kdf); |
48 | 0 | EVP_KDF_free(kdf); |
49 | 0 | if (kctx == NULL) |
50 | 0 | return 0; |
51 | 0 | *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_PASSWORD, |
52 | 0 | (char *)pass, (size_t)passlen); |
53 | 0 | *p++ = OSSL_PARAM_construct_int(OSSL_KDF_PARAM_PKCS5, &mode); |
54 | 0 | *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_SALT, |
55 | 0 | (unsigned char *)salt, saltlen); |
56 | 0 | *p++ = OSSL_PARAM_construct_int(OSSL_KDF_PARAM_ITER, &iter); |
57 | 0 | *p++ = OSSL_PARAM_construct_utf8_string(OSSL_KDF_PARAM_DIGEST, |
58 | 0 | (char *)mdname, 0); |
59 | 0 | *p = OSSL_PARAM_construct_end(); |
60 | 0 | if (EVP_KDF_derive(kctx, out, keylen, params) != 1) |
61 | 0 | rv = 0; |
62 | |
|
63 | 0 | EVP_KDF_CTX_free(kctx); |
64 | |
|
65 | 0 | OSSL_TRACE_BEGIN(PKCS5V2) |
66 | 0 | { |
67 | 0 | BIO_printf(trc_out, "Password:\n"); |
68 | 0 | BIO_hex_string(trc_out, |
69 | 0 | 0, passlen, pass, passlen); |
70 | 0 | BIO_printf(trc_out, "\n"); |
71 | 0 | BIO_printf(trc_out, "Salt:\n"); |
72 | 0 | BIO_hex_string(trc_out, |
73 | 0 | 0, saltlen, salt, saltlen); |
74 | 0 | BIO_printf(trc_out, "\n"); |
75 | 0 | BIO_printf(trc_out, "Iteration count %d\n", iter); |
76 | 0 | BIO_printf(trc_out, "Key:\n"); |
77 | 0 | BIO_hex_string(trc_out, |
78 | 0 | 0, keylen, out, keylen); |
79 | 0 | BIO_printf(trc_out, "\n"); |
80 | 0 | } |
81 | 0 | OSSL_TRACE_END(PKCS5V2); |
82 | 0 | return rv; |
83 | 0 | } |
84 | | |
85 | | int PKCS5_PBKDF2_HMAC(const char *pass, int passlen, const unsigned char *salt, |
86 | | int saltlen, int iter, const EVP_MD *digest, int keylen, |
87 | | unsigned char *out) |
88 | 0 | { |
89 | 0 | return ossl_pkcs5_pbkdf2_hmac_ex(pass, passlen, salt, saltlen, iter, digest, |
90 | 0 | keylen, out, NULL, NULL); |
91 | 0 | } |
92 | | |
93 | | int PKCS5_PBKDF2_HMAC_SHA1(const char *pass, int passlen, |
94 | | const unsigned char *salt, int saltlen, int iter, |
95 | | int keylen, unsigned char *out) |
96 | 0 | { |
97 | 0 | EVP_MD *digest; |
98 | 0 | int r = 0; |
99 | |
|
100 | 0 | if ((digest = EVP_MD_fetch(NULL, SN_sha1, NULL)) != NULL) |
101 | 0 | r = ossl_pkcs5_pbkdf2_hmac_ex(pass, passlen, salt, saltlen, iter, |
102 | 0 | digest, keylen, out, NULL, NULL); |
103 | 0 | EVP_MD_free(digest); |
104 | 0 | return r; |
105 | 0 | } |
106 | | |
107 | | /* |
108 | | * Now the key derivation function itself. This is a bit evil because it has |
109 | | * to check the ASN1 parameters are valid: and there are quite a few of |
110 | | * them... |
111 | | */ |
112 | | |
113 | | int PKCS5_v2_PBE_keyivgen_ex(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, |
114 | | ASN1_TYPE *param, const EVP_CIPHER *c, |
115 | | const EVP_MD *md, int en_de, |
116 | | OSSL_LIB_CTX *libctx, const char *propq) |
117 | 0 | { |
118 | 0 | PBE2PARAM *pbe2 = NULL; |
119 | 0 | char ciph_name[80]; |
120 | 0 | const EVP_CIPHER *cipher = NULL; |
121 | 0 | EVP_CIPHER *cipher_fetch = NULL; |
122 | 0 | EVP_PBE_KEYGEN_EX *kdf; |
123 | |
|
124 | 0 | int rv = 0; |
125 | |
|
126 | 0 | pbe2 = ASN1_TYPE_unpack_sequence(ASN1_ITEM_rptr(PBE2PARAM), param); |
127 | 0 | if (pbe2 == NULL) { |
128 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_DECODE_ERROR); |
129 | 0 | goto err; |
130 | 0 | } |
131 | | |
132 | | /* See if we recognise the key derivation function */ |
133 | 0 | if (!EVP_PBE_find_ex(EVP_PBE_TYPE_KDF, OBJ_obj2nid(pbe2->keyfunc->algorithm), |
134 | 0 | NULL, NULL, NULL, &kdf)) { |
135 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_UNSUPPORTED_KEY_DERIVATION_FUNCTION); |
136 | 0 | goto err; |
137 | 0 | } |
138 | | |
139 | | /* |
140 | | * lets see if we recognise the encryption algorithm. |
141 | | */ |
142 | 0 | if (OBJ_obj2txt(ciph_name, sizeof(ciph_name), pbe2->encryption->algorithm, 0) <= 0) { |
143 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_UNSUPPORTED_CIPHER); |
144 | 0 | goto err; |
145 | 0 | } |
146 | | |
147 | 0 | (void)ERR_set_mark(); |
148 | 0 | cipher = cipher_fetch = EVP_CIPHER_fetch(libctx, ciph_name, propq); |
149 | | /* Fallback to legacy method */ |
150 | 0 | if (cipher == NULL) |
151 | 0 | cipher = EVP_get_cipherbyname(ciph_name); |
152 | |
|
153 | 0 | if (cipher == NULL) { |
154 | 0 | (void)ERR_clear_last_mark(); |
155 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_UNSUPPORTED_CIPHER); |
156 | 0 | goto err; |
157 | 0 | } |
158 | 0 | (void)ERR_pop_to_mark(); |
159 | | |
160 | | /* Fixup cipher based on AlgorithmIdentifier */ |
161 | 0 | if (!EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, en_de)) |
162 | 0 | goto err; |
163 | 0 | if (EVP_CIPHER_asn1_to_param(ctx, pbe2->encryption->parameter) <= 0) { |
164 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_CIPHER_PARAMETER_ERROR); |
165 | 0 | goto err; |
166 | 0 | } |
167 | 0 | rv = kdf(ctx, pass, passlen, pbe2->keyfunc->parameter, NULL, NULL, en_de, libctx, propq); |
168 | 0 | err: |
169 | 0 | EVP_CIPHER_free(cipher_fetch); |
170 | 0 | PBE2PARAM_free(pbe2); |
171 | 0 | return rv; |
172 | 0 | } |
173 | | |
174 | | int PKCS5_v2_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, |
175 | | ASN1_TYPE *param, const EVP_CIPHER *c, |
176 | | const EVP_MD *md, int en_de) |
177 | 0 | { |
178 | 0 | return PKCS5_v2_PBE_keyivgen_ex(ctx, pass, passlen, param, c, md, en_de, NULL, NULL); |
179 | 0 | } |
180 | | |
181 | | int PKCS5_v2_PBKDF2_keyivgen_ex(EVP_CIPHER_CTX *ctx, const char *pass, |
182 | | int passlen, ASN1_TYPE *param, |
183 | | const EVP_CIPHER *c, const EVP_MD *md, int en_de, |
184 | | OSSL_LIB_CTX *libctx, const char *propq) |
185 | 0 | { |
186 | 0 | unsigned char *salt, key[EVP_MAX_KEY_LENGTH]; |
187 | 0 | int saltlen, iter, t; |
188 | 0 | int rv = 0; |
189 | 0 | unsigned int keylen = 0; |
190 | 0 | int prf_nid, hmac_md_nid; |
191 | 0 | PBKDF2PARAM *kdf = NULL; |
192 | 0 | const EVP_MD *prfmd = NULL; |
193 | 0 | EVP_MD *prfmd_fetch = NULL; |
194 | |
|
195 | 0 | if (EVP_CIPHER_CTX_get0_cipher(ctx) == NULL) { |
196 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_NO_CIPHER_SET); |
197 | 0 | goto err; |
198 | 0 | } |
199 | 0 | keylen = EVP_CIPHER_CTX_get_key_length(ctx); |
200 | 0 | OPENSSL_assert(keylen <= sizeof(key)); |
201 | | |
202 | | /* Decode parameter */ |
203 | |
|
204 | 0 | kdf = ASN1_TYPE_unpack_sequence(ASN1_ITEM_rptr(PBKDF2PARAM), param); |
205 | |
|
206 | 0 | if (kdf == NULL) { |
207 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_DECODE_ERROR); |
208 | 0 | goto err; |
209 | 0 | } |
210 | | |
211 | 0 | t = EVP_CIPHER_CTX_get_key_length(ctx); |
212 | 0 | if (t < 0) { |
213 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_KEY_LENGTH); |
214 | 0 | goto err; |
215 | 0 | } |
216 | 0 | keylen = t; |
217 | | |
218 | | /* Now check the parameters of the kdf */ |
219 | |
|
220 | 0 | if (kdf->keylength && (ASN1_INTEGER_get(kdf->keylength) != (int)keylen)) { |
221 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_UNSUPPORTED_KEYLENGTH); |
222 | 0 | goto err; |
223 | 0 | } |
224 | | |
225 | 0 | if (kdf->prf) |
226 | 0 | prf_nid = OBJ_obj2nid(kdf->prf->algorithm); |
227 | 0 | else |
228 | 0 | prf_nid = NID_hmacWithSHA1; |
229 | |
|
230 | 0 | if (!EVP_PBE_find(EVP_PBE_TYPE_PRF, prf_nid, NULL, &hmac_md_nid, 0)) { |
231 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_UNSUPPORTED_PRF); |
232 | 0 | goto err; |
233 | 0 | } |
234 | | |
235 | 0 | (void)ERR_set_mark(); |
236 | 0 | prfmd = prfmd_fetch = EVP_MD_fetch(libctx, OBJ_nid2sn(hmac_md_nid), propq); |
237 | 0 | if (prfmd == NULL) |
238 | 0 | prfmd = EVP_get_digestbynid(hmac_md_nid); |
239 | 0 | if (prfmd == NULL) { |
240 | 0 | (void)ERR_clear_last_mark(); |
241 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_UNSUPPORTED_PRF); |
242 | 0 | goto err; |
243 | 0 | } |
244 | 0 | (void)ERR_pop_to_mark(); |
245 | |
|
246 | 0 | if (kdf->salt->type != V_ASN1_OCTET_STRING) { |
247 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_UNSUPPORTED_SALT_TYPE); |
248 | 0 | goto err; |
249 | 0 | } |
250 | | |
251 | | /* it seems that its all OK */ |
252 | 0 | salt = kdf->salt->value.octet_string->data; |
253 | 0 | saltlen = kdf->salt->value.octet_string->length; |
254 | 0 | iter = ASN1_INTEGER_get(kdf->iter); |
255 | 0 | if (!ossl_pkcs5_pbkdf2_hmac_ex(pass, passlen, salt, saltlen, iter, prfmd, |
256 | 0 | keylen, key, libctx, propq)) |
257 | 0 | goto err; |
258 | 0 | rv = EVP_CipherInit_ex(ctx, NULL, NULL, key, NULL, en_de); |
259 | 0 | err: |
260 | 0 | OPENSSL_cleanse(key, keylen); |
261 | 0 | PBKDF2PARAM_free(kdf); |
262 | 0 | EVP_MD_free(prfmd_fetch); |
263 | 0 | return rv; |
264 | 0 | } |
265 | | |
266 | | int PKCS5_v2_PBKDF2_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, |
267 | | int passlen, ASN1_TYPE *param, |
268 | | const EVP_CIPHER *c, const EVP_MD *md, int en_de) |
269 | 0 | { |
270 | 0 | return PKCS5_v2_PBKDF2_keyivgen_ex(ctx, pass, passlen, param, c, md, en_de, |
271 | 0 | NULL, NULL); |
272 | 0 | } |