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