]> git.ipfire.org Git - thirdparty/openssl.git/blame - providers/default/defltprov.c
Add aes_wrap cipher to providers
[thirdparty/openssl.git] / providers / default / defltprov.c
CommitLineData
8a73348b
MC
1/*
2 * Copyright 2019 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 <string.h>
11#include <stdio.h>
55a0a117 12#include <openssl/opensslconf.h>
8a73348b
MC
13#include <openssl/core.h>
14#include <openssl/core_numbers.h>
15#include <openssl/core_names.h>
16#include <openssl/params.h>
861b8f87 17#include "internal/provider_algs.h"
8a73348b
MC
18
19/* Functions provided by the core */
dca97d00 20static OSSL_core_gettable_params_fn *c_gettable_params = NULL;
8a73348b
MC
21static OSSL_core_get_params_fn *c_get_params = NULL;
22
23/* Parameters we provide to the core */
26175013
RL
24static const OSSL_PARAM deflt_param_types[] = {
25 OSSL_PARAM_DEFN(OSSL_PROV_PARAM_NAME, OSSL_PARAM_UTF8_PTR, NULL, 0),
26 OSSL_PARAM_DEFN(OSSL_PROV_PARAM_VERSION, OSSL_PARAM_UTF8_PTR, NULL, 0),
27 OSSL_PARAM_DEFN(OSSL_PROV_PARAM_BUILDINFO, OSSL_PARAM_UTF8_PTR, NULL, 0),
28 OSSL_PARAM_END
8a73348b
MC
29};
30
dca97d00 31static const OSSL_PARAM *deflt_gettable_params(const OSSL_PROVIDER *prov)
8a73348b
MC
32{
33 return deflt_param_types;
34}
35
4e7991b4 36static int deflt_get_params(const OSSL_PROVIDER *prov, OSSL_PARAM params[])
8a73348b 37{
4e7991b4 38 OSSL_PARAM *p;
8a73348b
MC
39
40 p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_NAME);
41 if (p != NULL && !OSSL_PARAM_set_utf8_ptr(p, "OpenSSL Default Provider"))
42 return 0;
43 p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_VERSION);
44 if (p != NULL && !OSSL_PARAM_set_utf8_ptr(p, OPENSSL_VERSION_STR))
45 return 0;
46 p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_BUILDINFO);
47 if (p != NULL && !OSSL_PARAM_set_utf8_ptr(p, OPENSSL_FULL_VERSION_STR))
48 return 0;
49
50 return 1;
51}
52
de29ff17 53static const OSSL_ALGORITHM deflt_digests[] = {
d5e5e2ff
SL
54 { "SHA1", "default=yes", sha1_functions },
55
56 { "SHA224", "default=yes", sha224_functions },
de29ff17 57 { "SHA256", "default=yes", sha256_functions },
d5e5e2ff
SL
58 { "SHA384", "default=yes", sha384_functions },
59 { "SHA512", "default=yes", sha512_functions },
60 { "SHA512-224", "default=yes", sha512_224_functions },
61 { "SHA512-256", "default=yes", sha512_256_functions },
62
63 { "SHA3-224", "default=yes", sha3_224_functions },
64 { "SHA3-256", "default=yes", sha3_256_functions },
65 { "SHA3-384", "default=yes", sha3_384_functions },
66 { "SHA3-512", "default=yes", sha3_512_functions },
67
e23cda00 68 /*
bb31895d
RL
69 * KECCAK_KMAC128 and KECCAK_KMAC256 as hashes are mostly useful for
70 * the KMAC128 and KMAC256.
e23cda00 71 */
bb31895d
RL
72 { "KECCAK_KMAC128", "default=yes", keccak_kmac_128_functions },
73 { "KECCAK_KMAC256", "default=yes", keccak_kmac_256_functions },
d5e5e2ff
SL
74
75 { "SHAKE128", "default=yes", shake_128_functions },
76 { "SHAKE256", "default=yes", shake_256_functions },
77
78#ifndef OPENSSL_NO_BLAKE2
79 { "BLAKE2s256", "default=yes", blake2s256_functions },
80 { "BLAKE2b512", "default=yes", blake2b512_functions },
81#endif /* OPENSSL_NO_BLAKE2 */
82
83#ifndef OPENSSL_NO_SM3
84 { "SM3", "default=yes", sm3_functions },
85#endif /* OPENSSL_NO_SM3 */
86
87#ifndef OPENSSL_NO_MD5
88 { "MD5", "default=yes", md5_functions },
89 { "MD5-SHA1", "default=yes", md5_sha1_functions },
90#endif /* OPENSSL_NO_MD5 */
91
de29ff17
MC
92 { NULL, NULL, NULL }
93};
94
aab26e6f
MC
95static const OSSL_ALGORITHM deflt_ciphers[] = {
96 { "AES-256-ECB", "default=yes", aes256ecb_functions },
f4a129bb
MC
97 { "AES-192-ECB", "default=yes", aes192ecb_functions },
98 { "AES-128-ECB", "default=yes", aes128ecb_functions },
718b133a
MC
99 { "AES-256-CBC", "default=yes", aes256cbc_functions },
100 { "AES-192-CBC", "default=yes", aes192cbc_functions },
101 { "AES-128-CBC", "default=yes", aes128cbc_functions },
ed98df51
MC
102 { "AES-256-OFB", "default=yes", aes256ofb_functions },
103 { "AES-192-OFB", "default=yes", aes192ofb_functions },
104 { "AES-128-OFB", "default=yes", aes128ofb_functions },
75dd6d64
MC
105 { "AES-256-CFB", "default=yes", aes256cfb_functions },
106 { "AES-192-CFB", "default=yes", aes192cfb_functions },
107 { "AES-128-CFB", "default=yes", aes128cfb_functions },
108 { "AES-256-CFB1", "default=yes", aes256cfb1_functions },
109 { "AES-192-CFB1", "default=yes", aes192cfb1_functions },
110 { "AES-128-CFB1", "default=yes", aes128cfb1_functions },
111 { "AES-256-CFB8", "default=yes", aes256cfb8_functions },
112 { "AES-192-CFB8", "default=yes", aes192cfb8_functions },
113 { "AES-128-CFB8", "default=yes", aes128cfb8_functions },
819a7ae9
MC
114 { "AES-256-CTR", "default=yes", aes256ctr_functions },
115 { "AES-192-CTR", "default=yes", aes192ctr_functions },
116 { "AES-128-CTR", "default=yes", aes128ctr_functions },
3a9f26f3
SL
117 { "AES-256-XTS", "default=yes", aes256xts_functions },
118 { "AES-128-XTS", "default=yes", aes128xts_functions },
3837c202
SL
119#ifndef OPENSSL_NO_OCB
120 { "AES-256-OCB", "default=yes", aes256ocb_functions },
121 { "AES-192-OCB", "default=yes", aes192ocb_functions },
122 { "AES-128-OCB", "default=yes", aes128ocb_functions },
123#endif /* OPENSSL_NO_OCB */
3bfe9005 124/* TODO(3.0) Add aliases when they are supported */
a672a02a
SL
125 { "id-aes256-GCM", "default=yes", aes256gcm_functions },
126 { "id-aes192-GCM", "default=yes", aes192gcm_functions },
127 { "id-aes128-GCM", "default=yes", aes128gcm_functions },
3bfe9005
SL
128 { "id-aes256-CCM", "default=yes", aes256ccm_functions },
129 { "id-aes192-CCM", "default=yes", aes192ccm_functions },
130 { "id-aes128-CCM", "default=yes", aes128ccm_functions },
ca392b29
SL
131 { "id-aes256-wrap", "default=yes", aes256wrap_functions },
132 { "id-aes192-wrap", "default=yes", aes192wrap_functions },
133 { "id-aes128-wrap", "default=yes", aes128wrap_functions },
134 { "id-aes256-wrap-pad", "default=yes", aes256wrappad_functions },
135 { "id-aes192-wrap-pad", "default=yes", aes192wrappad_functions },
136 { "id-aes128-wrap-pad", "default=yes", aes128wrappad_functions },
a672a02a
SL
137#ifndef OPENSSL_NO_ARIA
138 { "ARIA-256-GCM", "default=yes", aria256gcm_functions },
139 { "ARIA-192-GCM", "default=yes", aria192gcm_functions },
140 { "ARIA-128-GCM", "default=yes", aria128gcm_functions },
3bfe9005
SL
141 { "ARIA-256-CCM", "default=yes", aria256ccm_functions },
142 { "ARIA-192-CCM", "default=yes", aria192ccm_functions },
143 { "ARIA-128-CCM", "default=yes", aria128ccm_functions },
e1178600
SL
144 { "ARIA-256-ECB", "default=yes", aria256ecb_functions },
145 { "ARIA-192-ECB", "default=yes", aria192ecb_functions },
146 { "ARIA-128-ECB", "default=yes", aria128ecb_functions },
147 { "ARIA-256-CBC", "default=yes", aria256cbc_functions },
148 { "ARIA-192-CBC", "default=yes", aria192cbc_functions },
149 { "ARIA-128-CBC", "default=yes", aria128cbc_functions },
150 { "ARIA-256-OFB", "default=yes", aria256ofb_functions },
151 { "ARIA-192-OFB", "default=yes", aria192ofb_functions },
152 { "ARIA-128-OFB", "default=yes", aria128ofb_functions },
153 { "ARIA-256-CFB", "default=yes", aria256cfb_functions },
154 { "ARIA-192-CFB", "default=yes", aria192cfb_functions },
155 { "ARIA-128-CFB", "default=yes", aria128cfb_functions },
156 { "ARIA-256-CFB1", "default=yes", aria256cfb1_functions },
157 { "ARIA-192-CFB1", "default=yes", aria192cfb1_functions },
158 { "ARIA-128-CFB1", "default=yes", aria128cfb1_functions },
159 { "ARIA-256-CFB8", "default=yes", aria256cfb8_functions },
160 { "ARIA-192-CFB8", "default=yes", aria192cfb8_functions },
161 { "ARIA-128-CFB8", "default=yes", aria128cfb8_functions },
162 { "ARIA-256-CTR", "default=yes", aria256ctr_functions },
163 { "ARIA-192-CTR", "default=yes", aria192ctr_functions },
164 { "ARIA-128-CTR", "default=yes", aria128ctr_functions },
a672a02a 165#endif /* OPENSSL_NO_ARIA */
e1178600
SL
166#ifndef OPENSSL_NO_CAMELLIA
167 { "CAMELLIA-256-ECB", "default=yes", camellia256ecb_functions },
168 { "CAMELLIA-192-ECB", "default=yes", camellia192ecb_functions },
169 { "CAMELLIA-128-ECB", "default=yes", camellia128ecb_functions },
170 { "CAMELLIA-256-CBC", "default=yes", camellia256cbc_functions },
171 { "CAMELLIA-192-CBC", "default=yes", camellia192cbc_functions },
172 { "CAMELLIA-128-CBC", "default=yes", camellia128cbc_functions },
173 { "CAMELLIA-256-OFB", "default=yes", camellia256ofb_functions },
174 { "CAMELLIA-192-OFB", "default=yes", camellia192ofb_functions },
175 { "CAMELLIA-128-OFB", "default=yes", camellia128ofb_functions },
176 { "CAMELLIA-256-CFB", "default=yes", camellia256cfb_functions },
177 { "CAMELLIA-192-CFB", "default=yes", camellia192cfb_functions },
178 { "CAMELLIA-128-CFB", "default=yes", camellia128cfb_functions },
179 { "CAMELLIA-256-CFB1", "default=yes", camellia256cfb1_functions },
180 { "CAMELLIA-192-CFB1", "default=yes", camellia192cfb1_functions },
181 { "CAMELLIA-128-CFB1", "default=yes", camellia128cfb1_functions },
182 { "CAMELLIA-256-CFB8", "default=yes", camellia256cfb8_functions },
183 { "CAMELLIA-192-CFB8", "default=yes", camellia192cfb8_functions },
184 { "CAMELLIA-128-CFB8", "default=yes", camellia128cfb8_functions },
185 { "CAMELLIA-256-CTR", "default=yes", camellia256ctr_functions },
186 { "CAMELLIA-192-CTR", "default=yes", camellia192ctr_functions },
187 { "CAMELLIA-128-CTR", "default=yes", camellia128ctr_functions },
188#endif /* OPENSSL_NO_CAMELLIA */
cb1548bc 189#ifndef OPENSSL_NO_DES
4a42e264
SL
190 { "DES-EDE3", "default=yes", tdes_ede3_ecb_functions },
191 { "DES-EDE3-CBC", "default=yes", tdes_ede3_cbc_functions },
192 { "DES-EDE3-OFB", "default=yes", tdes_ede3_ofb_functions },
193 { "DES-EDE3-CFB", "default=yes", tdes_ede3_cfb_functions },
194 { "DES-EDE3-CFB8", "default=yes", tdes_ede3_cfb8_functions },
195 { "DES-EDE3-CFB1", "default=yes", tdes_ede3_cfb1_functions },
196 { "DES-EDE", "default=yes", tdes_ede2_ecb_functions },
197 { "DES-EDE-CBC", "default=yes", tdes_ede2_cbc_functions },
198 { "DES-EDE-OFB", "default=yes", tdes_ede2_ofb_functions },
199 { "DES-EDE-CFB", "default=yes", tdes_ede2_cfb_functions },
200 { "DESX-CBC", "default=yes", tdes_desx_cbc_functions },
201 { "id-smime-alg-CMS3DESwrap", "default=yes", tdes_wrap_cbc_functions },
cb1548bc 202#endif /* OPENSSL_NO_DES */
55c7dc79
SL
203#ifndef OPENSSL_NO_BF
204 { "BF-ECB", "default=yes", blowfish128ecb_functions },
205 { "BF-CBC", "default=yes", blowfish128cbc_functions },
206 { "BF-OFB", "default=yes", blowfish64ofb64_functions },
207 { "BF-CFB", "default=yes", blowfish64cfb64_functions },
208#endif /* OPENSSL_NO_BF */
f22431f2
SL
209#ifndef OPENSSL_NO_IDEA
210 { "IDEA-ECB", "default=yes", idea128ecb_functions },
211 { "IDEA-CBC", "default=yes", idea128cbc_functions },
212 { "IDEA-OFB", "default=yes", idea128ofb64_functions },
213 { "IDEA-CFB", "default=yes", idea128cfb64_functions },
214#endif /* OPENSSL_NO_IDEA */
18b00427
SL
215#ifndef OPENSSL_NO_CAST
216 { "CAST5-ECB", "default=yes", cast5128ecb_functions },
217 { "CAST5-CBC", "default=yes", cast5128cbc_functions },
218 { "CAST5-OFB", "default=yes", cast564ofb64_functions },
219 { "CAST5-CFB", "default=yes", cast564cfb64_functions },
220#endif /* OPENSSL_NO_CAST */
70adc646
SL
221#ifndef OPENSSL_NO_SEED
222 { "SEED-ECB", "default=yes", seed128ecb_functions },
223 { "SEED-CBC", "default=yes", seed128cbc_functions },
224 { "SEED-OFB", "default=yes", seed128ofb128_functions },
225 { "SEED-CFB", "default=yes", seed128cfb128_functions },
226#endif /* OPENSSL_NO_SEED */
105dde25
SL
227#ifndef OPENSSL_NO_SM4
228 { "SM4-ECB", "default=yes", sm4128ecb_functions },
229 { "SM4-CBC", "default=yes", sm4128cbc_functions },
230 { "SM4-CTR", "default=yes", sm4128ctr_functions },
231 { "SM4-OFB", "default=yes", sm4128ofb128_functions },
232 { "SM4-CFB", "default=yes", sm4128cfb128_functions },
233#endif /* OPENSSL_NO_SM4 */
aab26e6f
MC
234 { NULL, NULL, NULL }
235};
236
55a0a117
RL
237static const OSSL_ALGORITHM deflt_macs[] = {
238#ifndef OPENSSL_NO_BLAKE2
239 { "BLAKE2BMAC", "default=yes", blake2bmac_functions },
240 { "BLAKE2SMAC", "default=yes", blake2smac_functions },
2e5db6ad
RL
241#endif
242#ifndef OPENSSL_NO_CMAC
243 { "CMAC", "default=yes", cmac_functions },
55a0a117 244#endif
d33313be 245 { "GMAC", "default=yes", gmac_functions },
5183ebdc 246 { "HMAC", "default=yes", hmac_functions },
e23cda00
RL
247 { "KMAC128", "default=yes", kmac128_functions },
248 { "KMAC256", "default=yes", kmac256_functions },
4657693d
RL
249#ifndef OPENSSL_NO_SIPHASH
250 { "SipHash", "default=yes", siphash_functions },
ae0b6b92
RL
251#endif
252#ifndef OPENSSL_NO_POLY1305
253 { "Poly1305", "default=yes", poly1305_functions },
4657693d 254#endif
55a0a117
RL
255 { NULL, NULL, NULL }
256};
257
e3405a4a 258static const OSSL_ALGORITHM deflt_kdfs[] = {
69333af4
P
259 { OSSL_KDF_NAME_HKDF, "default=yes", kdf_hkdf_functions },
260 { OSSL_KDF_NAME_SSKDF, "default=yes", kdf_sskdf_functions },
261 { OSSL_KDF_NAME_PBKDF2, "default=yes", kdf_pbkdf2_functions },
262 { OSSL_KDF_NAME_SSHKDF, "default=yes", kdf_sshkdf_functions },
263 { OSSL_KDF_NAME_X963KDF, "default=yes", kdf_x963_kdf_functions },
264 { OSSL_KDF_NAME_TLS1_PRF, "default=yes", kdf_tls1_prf_functions },
e3405a4a 265#ifndef OPENSSL_NO_CMS
69333af4 266 { OSSL_KDF_NAME_X942KDF, "default=yes", kdf_x942_kdf_functions },
e3405a4a
P
267#endif
268#ifndef OPENSSL_NO_SCRYPT
69333af4 269 { OSSL_KDF_NAME_SCRYPT, "default=yes", kdf_scrypt_functions },
e3405a4a
P
270#endif
271 { NULL, NULL, NULL }
272};
273
89e29174 274static const OSSL_ALGORITHM deflt_keyexch[] = {
76ca35e7 275#ifndef OPENSSL_NO_DH
8b84b075
RL
276 { "dhKeyAgreement", "default=yes", dh_keyexch_functions },
277#endif
278 { NULL, NULL, NULL }
279};
280
4889dadc
MC
281static const OSSL_ALGORITHM deflt_signature[] = {
282#ifndef OPENSSL_NO_DSA
283 { "DSA", "default=yes", dsa_signature_functions },
284#endif
285 { NULL, NULL, NULL }
286};
287
288
8b84b075
RL
289static const OSSL_ALGORITHM deflt_keymgmt[] = {
290#ifndef OPENSSL_NO_DH
291 { "dhKeyAgreement", "default=yes", dh_keymgmt_functions },
4889dadc
MC
292#endif
293#ifndef OPENSSL_NO_DSA
294 { "DSA", "default=yes", dsa_keymgmt_functions },
76ca35e7 295#endif
89e29174
MC
296 { NULL, NULL, NULL }
297};
298
de29ff17
MC
299static const OSSL_ALGORITHM *deflt_query(OSSL_PROVIDER *prov,
300 int operation_id,
301 int *no_cache)
302{
303 *no_cache = 0;
304 switch (operation_id) {
305 case OSSL_OP_DIGEST:
306 return deflt_digests;
aab26e6f
MC
307 case OSSL_OP_CIPHER:
308 return deflt_ciphers;
55a0a117
RL
309 case OSSL_OP_MAC:
310 return deflt_macs;
e3405a4a
P
311 case OSSL_OP_KDF:
312 return deflt_kdfs;
8b84b075
RL
313 case OSSL_OP_KEYMGMT:
314 return deflt_keymgmt;
89e29174
MC
315 case OSSL_OP_KEYEXCH:
316 return deflt_keyexch;
4889dadc
MC
317 case OSSL_OP_SIGNATURE:
318 return deflt_signature;
de29ff17
MC
319 }
320 return NULL;
321}
322
8a73348b
MC
323/* Functions we provide to the core */
324static const OSSL_DISPATCH deflt_dispatch_table[] = {
dca97d00 325 { OSSL_FUNC_PROVIDER_GETTABLE_PARAMS, (void (*)(void))deflt_gettable_params },
8a73348b 326 { OSSL_FUNC_PROVIDER_GET_PARAMS, (void (*)(void))deflt_get_params },
de29ff17 327 { OSSL_FUNC_PROVIDER_QUERY_OPERATION, (void (*)(void))deflt_query },
8a73348b
MC
328 { 0, NULL }
329};
330
331OSSL_provider_init_fn ossl_default_provider_init;
332
333int ossl_default_provider_init(const OSSL_PROVIDER *provider,
334 const OSSL_DISPATCH *in,
a39eb840
RL
335 const OSSL_DISPATCH **out,
336 void **provctx)
8a73348b 337{
8013a933
RL
338 OSSL_core_get_library_context_fn *c_get_libctx = NULL;
339
8a73348b
MC
340 for (; in->function_id != 0; in++) {
341 switch (in->function_id) {
dca97d00
RL
342 case OSSL_FUNC_CORE_GETTABLE_PARAMS:
343 c_gettable_params = OSSL_get_core_gettable_params(in);
8a73348b
MC
344 break;
345 case OSSL_FUNC_CORE_GET_PARAMS:
346 c_get_params = OSSL_get_core_get_params(in);
347 break;
8013a933
RL
348 case OSSL_FUNC_CORE_GET_LIBRARY_CONTEXT:
349 c_get_libctx = OSSL_get_core_get_library_context(in);
350 break;
8a73348b
MC
351 default:
352 /* Just ignore anything we don't understand */
353 break;
354 }
355 }
356
8013a933
RL
357 if (c_get_libctx == NULL)
358 return 0;
359
8a73348b 360 *out = deflt_dispatch_table;
8013a933
RL
361
362 /*
363 * We want to make sure that all calls from this provider that requires
364 * a library context use the same context as the one used to call our
365 * functions. We do that by passing it along as the provider context.
366 */
367 *provctx = c_get_libctx(provider);
8a73348b
MC
368 return 1;
369}