]> git.ipfire.org Git - thirdparty/openssl.git/blame - providers/implementations/include/prov/implementations.h
Rename FIPS_MODE to FIPS_MODULE
[thirdparty/openssl.git] / providers / implementations / include / prov / implementations.h
CommitLineData
861b8f87 1/*
f552d900 2 * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
861b8f87
MC
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/* Digests */
d5e5e2ff
SL
11extern const OSSL_DISPATCH sha1_functions[];
12extern const OSSL_DISPATCH sha224_functions[];
861b8f87 13extern const OSSL_DISPATCH sha256_functions[];
d5e5e2ff
SL
14extern const OSSL_DISPATCH sha384_functions[];
15extern const OSSL_DISPATCH sha512_functions[];
16extern const OSSL_DISPATCH sha512_224_functions[];
17extern const OSSL_DISPATCH sha512_256_functions[];
18extern const OSSL_DISPATCH sha3_224_functions[];
19extern const OSSL_DISPATCH sha3_256_functions[];
20extern const OSSL_DISPATCH sha3_384_functions[];
21extern const OSSL_DISPATCH sha3_512_functions[];
22extern const OSSL_DISPATCH keccak_kmac_128_functions[];
23extern const OSSL_DISPATCH keccak_kmac_256_functions[];
24extern const OSSL_DISPATCH shake_128_functions[];
25extern const OSSL_DISPATCH shake_256_functions[];
26extern const OSSL_DISPATCH blake2s256_functions[];
27extern const OSSL_DISPATCH blake2b512_functions[];
28extern const OSSL_DISPATCH md5_functions[];
29extern const OSSL_DISPATCH md5_sha1_functions[];
30extern const OSSL_DISPATCH sm3_functions[];
d5e5e2ff
SL
31extern const OSSL_DISPATCH md2_functions[];
32extern const OSSL_DISPATCH md4_functions[];
33extern const OSSL_DISPATCH mdc2_functions[];
34extern const OSSL_DISPATCH wp_functions[];
35extern const OSSL_DISPATCH ripemd160_functions[];
861b8f87
MC
36
37/* Ciphers */
068489a2 38extern const OSSL_DISPATCH null_functions[];
861b8f87 39extern const OSSL_DISPATCH aes256ecb_functions[];
f4a129bb
MC
40extern const OSSL_DISPATCH aes192ecb_functions[];
41extern const OSSL_DISPATCH aes128ecb_functions[];
718b133a
MC
42extern const OSSL_DISPATCH aes256cbc_functions[];
43extern const OSSL_DISPATCH aes192cbc_functions[];
44extern const OSSL_DISPATCH aes128cbc_functions[];
ed98df51
MC
45extern const OSSL_DISPATCH aes256ofb_functions[];
46extern const OSSL_DISPATCH aes192ofb_functions[];
47extern const OSSL_DISPATCH aes128ofb_functions[];
75dd6d64
MC
48extern const OSSL_DISPATCH aes256cfb_functions[];
49extern const OSSL_DISPATCH aes192cfb_functions[];
50extern const OSSL_DISPATCH aes128cfb_functions[];
51extern const OSSL_DISPATCH aes256cfb1_functions[];
52extern const OSSL_DISPATCH aes192cfb1_functions[];
53extern const OSSL_DISPATCH aes128cfb1_functions[];
54extern const OSSL_DISPATCH aes256cfb8_functions[];
55extern const OSSL_DISPATCH aes192cfb8_functions[];
56extern const OSSL_DISPATCH aes128cfb8_functions[];
819a7ae9
MC
57extern const OSSL_DISPATCH aes256ctr_functions[];
58extern const OSSL_DISPATCH aes192ctr_functions[];
59extern const OSSL_DISPATCH aes128ctr_functions[];
3a9f26f3
SL
60extern const OSSL_DISPATCH aes256xts_functions[];
61extern const OSSL_DISPATCH aes128xts_functions[];
3837c202
SL
62#ifndef OPENSSL_NO_OCB
63extern const OSSL_DISPATCH aes256ocb_functions[];
64extern const OSSL_DISPATCH aes192ocb_functions[];
65extern const OSSL_DISPATCH aes128ocb_functions[];
66#endif /* OPENSSL_NO_OCB */
a672a02a
SL
67extern const OSSL_DISPATCH aes256gcm_functions[];
68extern const OSSL_DISPATCH aes192gcm_functions[];
69extern const OSSL_DISPATCH aes128gcm_functions[];
3bfe9005
SL
70extern const OSSL_DISPATCH aes256ccm_functions[];
71extern const OSSL_DISPATCH aes192ccm_functions[];
72extern const OSSL_DISPATCH aes128ccm_functions[];
ca392b29
SL
73extern const OSSL_DISPATCH aes256wrap_functions[];
74extern const OSSL_DISPATCH aes192wrap_functions[];
75extern const OSSL_DISPATCH aes128wrap_functions[];
76extern const OSSL_DISPATCH aes256wrappad_functions[];
77extern const OSSL_DISPATCH aes192wrappad_functions[];
78extern const OSSL_DISPATCH aes128wrappad_functions[];
0d2bfe52
SL
79extern const OSSL_DISPATCH aes256cbc_hmac_sha1_functions[];
80extern const OSSL_DISPATCH aes128cbc_hmac_sha1_functions[];
81extern const OSSL_DISPATCH aes256cbc_hmac_sha256_functions[];
82extern const OSSL_DISPATCH aes128cbc_hmac_sha256_functions[];
ca392b29 83
a672a02a
SL
84#ifndef OPENSSL_NO_ARIA
85extern const OSSL_DISPATCH aria256gcm_functions[];
86extern const OSSL_DISPATCH aria192gcm_functions[];
87extern const OSSL_DISPATCH aria128gcm_functions[];
3bfe9005
SL
88extern const OSSL_DISPATCH aria256ccm_functions[];
89extern const OSSL_DISPATCH aria192ccm_functions[];
90extern const OSSL_DISPATCH aria128ccm_functions[];
e1178600
SL
91extern const OSSL_DISPATCH aria256ecb_functions[];
92extern const OSSL_DISPATCH aria192ecb_functions[];
93extern const OSSL_DISPATCH aria128ecb_functions[];
94extern const OSSL_DISPATCH aria256cbc_functions[];
95extern const OSSL_DISPATCH aria192cbc_functions[];
96extern const OSSL_DISPATCH aria128cbc_functions[];
97extern const OSSL_DISPATCH aria256ofb_functions[];
98extern const OSSL_DISPATCH aria192ofb_functions[];
99extern const OSSL_DISPATCH aria128ofb_functions[];
100extern const OSSL_DISPATCH aria256cfb_functions[];
101extern const OSSL_DISPATCH aria192cfb_functions[];
102extern const OSSL_DISPATCH aria128cfb_functions[];
103extern const OSSL_DISPATCH aria256cfb1_functions[];
104extern const OSSL_DISPATCH aria192cfb1_functions[];
105extern const OSSL_DISPATCH aria128cfb1_functions[];
106extern const OSSL_DISPATCH aria256cfb8_functions[];
107extern const OSSL_DISPATCH aria192cfb8_functions[];
108extern const OSSL_DISPATCH aria128cfb8_functions[];
109extern const OSSL_DISPATCH aria256ctr_functions[];
110extern const OSSL_DISPATCH aria192ctr_functions[];
111extern const OSSL_DISPATCH aria128ctr_functions[];
a672a02a 112#endif /* OPENSSL_NO_ARIA */
e1178600
SL
113#ifndef OPENSSL_NO_CAMELLIA
114extern const OSSL_DISPATCH camellia256ecb_functions[];
115extern const OSSL_DISPATCH camellia192ecb_functions[];
116extern const OSSL_DISPATCH camellia128ecb_functions[];
117extern const OSSL_DISPATCH camellia256cbc_functions[];
118extern const OSSL_DISPATCH camellia192cbc_functions[];
119extern const OSSL_DISPATCH camellia128cbc_functions[];
120extern const OSSL_DISPATCH camellia256ofb_functions[];
121extern const OSSL_DISPATCH camellia192ofb_functions[];
122extern const OSSL_DISPATCH camellia128ofb_functions[];
123extern const OSSL_DISPATCH camellia256cfb_functions[];
124extern const OSSL_DISPATCH camellia192cfb_functions[];
125extern const OSSL_DISPATCH camellia128cfb_functions[];
126extern const OSSL_DISPATCH camellia256cfb1_functions[];
127extern const OSSL_DISPATCH camellia192cfb1_functions[];
128extern const OSSL_DISPATCH camellia128cfb1_functions[];
129extern const OSSL_DISPATCH camellia256cfb8_functions[];
130extern const OSSL_DISPATCH camellia192cfb8_functions[];
131extern const OSSL_DISPATCH camellia128cfb8_functions[];
132extern const OSSL_DISPATCH camellia256ctr_functions[];
133extern const OSSL_DISPATCH camellia192ctr_functions[];
134extern const OSSL_DISPATCH camellia128ctr_functions[];
135#endif /* OPENSSL_NO_CAMELLIA */
55c7dc79
SL
136#ifndef OPENSSL_NO_BF
137extern const OSSL_DISPATCH blowfish128ecb_functions[];
138extern const OSSL_DISPATCH blowfish128cbc_functions[];
139extern const OSSL_DISPATCH blowfish64ofb64_functions[];
140extern const OSSL_DISPATCH blowfish64cfb64_functions[];
141#endif /* OPENSSL_NO_BF */
f22431f2
SL
142#ifndef OPENSSL_NO_IDEA
143extern const OSSL_DISPATCH idea128ecb_functions[];
144extern const OSSL_DISPATCH idea128cbc_functions[];
145extern const OSSL_DISPATCH idea128ofb64_functions[];
146extern const OSSL_DISPATCH idea128cfb64_functions[];
147#endif /* OPENSSL_NO_IDEA */
18b00427
SL
148#ifndef OPENSSL_NO_CAST
149extern const OSSL_DISPATCH cast5128ecb_functions[];
150extern const OSSL_DISPATCH cast5128cbc_functions[];
151extern const OSSL_DISPATCH cast564ofb64_functions[];
152extern const OSSL_DISPATCH cast564cfb64_functions[];
153#endif /* OPENSSL_NO_CAST */
70adc646
SL
154#ifndef OPENSSL_NO_SEED
155extern const OSSL_DISPATCH seed128ecb_functions[];
156extern const OSSL_DISPATCH seed128cbc_functions[];
157extern const OSSL_DISPATCH seed128ofb128_functions[];
158extern const OSSL_DISPATCH seed128cfb128_functions[];
159#endif /* OPENSSL_NO_SEED */
105dde25
SL
160#ifndef OPENSSL_NO_SM4
161extern const OSSL_DISPATCH sm4128ecb_functions[];
162extern const OSSL_DISPATCH sm4128cbc_functions[];
163extern const OSSL_DISPATCH sm4128ctr_functions[];
164extern const OSSL_DISPATCH sm4128ofb128_functions[];
165extern const OSSL_DISPATCH sm4128cfb128_functions[];
166#endif /* OPENSSL_NO_SM4 */
6a41156c
SL
167#ifndef OPENSSL_NO_RC5
168extern const OSSL_DISPATCH rc5128ecb_functions[];
169extern const OSSL_DISPATCH rc5128cbc_functions[];
170extern const OSSL_DISPATCH rc5128ofb64_functions[];
171extern const OSSL_DISPATCH rc5128cfb64_functions[];
172#endif /* OPENSSL_NO_RC5 */
f816aa47
SL
173#ifndef OPENSSL_NO_RC2
174extern const OSSL_DISPATCH rc2128ecb_functions[];
175extern const OSSL_DISPATCH rc2128cbc_functions[];
176extern const OSSL_DISPATCH rc240cbc_functions[];
177extern const OSSL_DISPATCH rc264cbc_functions[];
178extern const OSSL_DISPATCH rc2128cfb128_functions[];
179extern const OSSL_DISPATCH rc2128ofb128_functions[];
180#endif /* OPENSSL_NO_RC2 */
e3f3ee44 181#ifndef OPENSSL_NO_DES
4a42e264
SL
182extern const OSSL_DISPATCH tdes_ede3_ecb_functions[];
183extern const OSSL_DISPATCH tdes_ede3_cbc_functions[];
f844f9eb 184# ifndef FIPS_MODULE
4a42e264
SL
185extern const OSSL_DISPATCH tdes_ede3_ofb_functions[];
186extern const OSSL_DISPATCH tdes_ede3_cfb_functions[];
187extern const OSSL_DISPATCH tdes_ede3_cfb8_functions[];
188extern const OSSL_DISPATCH tdes_ede3_cfb1_functions[];
189
190extern const OSSL_DISPATCH tdes_ede2_ecb_functions[];
191extern const OSSL_DISPATCH tdes_ede2_cbc_functions[];
192extern const OSSL_DISPATCH tdes_ede2_ofb_functions[];
193extern const OSSL_DISPATCH tdes_ede2_cfb_functions[];
194
195extern const OSSL_DISPATCH tdes_desx_cbc_functions[];
196extern const OSSL_DISPATCH tdes_wrap_cbc_functions[];
e3f3ee44
SL
197
198extern const OSSL_DISPATCH des_ecb_functions[];
199extern const OSSL_DISPATCH des_cbc_functions[];
200extern const OSSL_DISPATCH des_ofb64_functions[];
201extern const OSSL_DISPATCH des_cfb64_functions[];
202extern const OSSL_DISPATCH des_cfb1_functions[];
203extern const OSSL_DISPATCH des_cfb8_functions[];
f844f9eb 204# endif /* FIPS_MODULE */
e3f3ee44 205#endif /* OPENSSL_NO_DES */
4a42e264 206
bafde183
SL
207#ifndef OPENSSL_NO_RC4
208extern const OSSL_DISPATCH rc440_functions[];
209extern const OSSL_DISPATCH rc4128_functions[];
8fece335
SL
210# ifndef OPENSSL_NO_MD5
211extern const OSSL_DISPATCH rc4_hmac_md5_functions[];
212# endif /* OPENSSL_NO_MD5 */
bafde183 213#endif /* OPENSSL_NO_RC4 */
3d5a7578
SL
214#ifndef OPENSSL_NO_CHACHA
215extern const OSSL_DISPATCH chacha20_functions[];
216# ifndef OPENSSL_NO_POLY1305
217extern const OSSL_DISPATCH chacha20_poly1305_functions[];
218# endif /* OPENSSL_NO_POLY1305 */
219#endif /* OPENSSL_NO_CHACHA */
220
bafde183 221
eb173822
SL
222#ifndef OPENSSL_NO_SIV
223extern const OSSL_DISPATCH aes128siv_functions[];
224extern const OSSL_DISPATCH aes192siv_functions[];
225extern const OSSL_DISPATCH aes256siv_functions[];
226#endif /* OPENSSL_NO_SIV */
227
e3405a4a
P
228/* MACs */
229extern const OSSL_DISPATCH blake2bmac_functions[];
230extern const OSSL_DISPATCH blake2smac_functions[];
231extern const OSSL_DISPATCH cmac_functions[];
232extern const OSSL_DISPATCH gmac_functions[];
233extern const OSSL_DISPATCH hmac_functions[];
234extern const OSSL_DISPATCH kmac128_functions[];
235extern const OSSL_DISPATCH kmac256_functions[];
236extern const OSSL_DISPATCH siphash_functions[];
237extern const OSSL_DISPATCH poly1305_functions[];
238
239/* KDFs / PRFs */
240extern const OSSL_DISPATCH kdf_pbkdf2_functions[];
241#ifndef OPENSSL_NO_SCRYPT
242extern const OSSL_DISPATCH kdf_scrypt_functions[];
243#endif
244extern const OSSL_DISPATCH kdf_tls1_prf_functions[];
245extern const OSSL_DISPATCH kdf_hkdf_functions[];
246extern const OSSL_DISPATCH kdf_sshkdf_functions[];
247extern const OSSL_DISPATCH kdf_sskdf_functions[];
248extern const OSSL_DISPATCH kdf_x963_kdf_functions[];
a39bc440 249extern const OSSL_DISPATCH kdf_kbkdf_functions[];
e3405a4a
P
250#ifndef OPENSSL_NO_CMS
251extern const OSSL_DISPATCH kdf_x942_kdf_functions[];
252#endif
33f54da3 253extern const OSSL_DISPATCH kdf_krb5kdf_functions[];
e3405a4a
P
254
255
8b84b075
RL
256/* Key management */
257extern const OSSL_DISPATCH dh_keymgmt_functions[];
4889dadc 258extern const OSSL_DISPATCH dsa_keymgmt_functions[];
29be6023 259extern const OSSL_DISPATCH rsa_keymgmt_functions[];
90d3cb57
MC
260extern const OSSL_DISPATCH x25519_keymgmt_functions[];
261extern const OSSL_DISPATCH x448_keymgmt_functions[];
af6d8dd3
MC
262extern const OSSL_DISPATCH ed25519_keymgmt_functions[];
263extern const OSSL_DISPATCH ed448_keymgmt_functions[];
4fe54d67 264extern const OSSL_DISPATCH ec_keymgmt_functions[];
8b84b075 265
89e29174 266/* Key Exchange */
8b84b075 267extern const OSSL_DISPATCH dh_keyexch_functions[];
6f7d2135
MC
268extern const OSSL_DISPATCH x25519_keyexch_functions[];
269extern const OSSL_DISPATCH x448_keyexch_functions[];
4fe54d67 270extern const OSSL_DISPATCH ecdh_keyexch_functions[];
4889dadc
MC
271
272/* Signature */
273extern const OSSL_DISPATCH dsa_signature_functions[];
6f4b7663 274extern const OSSL_DISPATCH rsa_signature_functions[];
3965480c
MC
275extern const OSSL_DISPATCH ed25519_signature_functions[];
276extern const OSSL_DISPATCH ed448_signature_functions[];
edd3b7a3
SL
277extern const OSSL_DISPATCH ecdsa_signature_functions[];
278
89abd1b6
MC
279
280/* Asym Cipher */
281extern const OSSL_DISPATCH rsa_asym_cipher_functions[];
677add38
RL
282
283/* Serializers */
284extern const OSSL_DISPATCH rsa_priv_text_serializer_functions[];
285extern const OSSL_DISPATCH rsa_pub_text_serializer_functions[];
286extern const OSSL_DISPATCH rsa_priv_der_serializer_functions[];
287extern const OSSL_DISPATCH rsa_pub_der_serializer_functions[];
288extern const OSSL_DISPATCH rsa_priv_pem_serializer_functions[];
289extern const OSSL_DISPATCH rsa_pub_pem_serializer_functions[];
8efc4a9c 290
045e51cb
RL
291extern const OSSL_DISPATCH dh_priv_text_serializer_functions[];
292extern const OSSL_DISPATCH dh_pub_text_serializer_functions[];
293extern const OSSL_DISPATCH dh_param_text_serializer_functions[];
294extern const OSSL_DISPATCH dh_priv_der_serializer_functions[];
295extern const OSSL_DISPATCH dh_pub_der_serializer_functions[];
296extern const OSSL_DISPATCH dh_param_der_serializer_functions[];
297extern const OSSL_DISPATCH dh_priv_pem_serializer_functions[];
298extern const OSSL_DISPATCH dh_pub_pem_serializer_functions[];
299extern const OSSL_DISPATCH dh_param_pem_serializer_functions[];
8efc4a9c 300
264b789b
RL
301extern const OSSL_DISPATCH dsa_priv_text_serializer_functions[];
302extern const OSSL_DISPATCH dsa_pub_text_serializer_functions[];
303extern const OSSL_DISPATCH dsa_param_text_serializer_functions[];
304extern const OSSL_DISPATCH dsa_priv_der_serializer_functions[];
305extern const OSSL_DISPATCH dsa_pub_der_serializer_functions[];
306extern const OSSL_DISPATCH dsa_param_der_serializer_functions[];
307extern const OSSL_DISPATCH dsa_priv_pem_serializer_functions[];
308extern const OSSL_DISPATCH dsa_pub_pem_serializer_functions[];
309extern const OSSL_DISPATCH dsa_param_pem_serializer_functions[];
8efc4a9c
MC
310
311extern const OSSL_DISPATCH x25519_priv_print_serializer_functions[];
312extern const OSSL_DISPATCH x25519_pub_print_serializer_functions[];
313extern const OSSL_DISPATCH x25519_priv_der_serializer_functions[];
314extern const OSSL_DISPATCH x25519_pub_der_serializer_functions[];
315extern const OSSL_DISPATCH x25519_priv_pem_serializer_functions[];
316extern const OSSL_DISPATCH x25519_pub_pem_serializer_functions[];
317
318extern const OSSL_DISPATCH x448_priv_print_serializer_functions[];
319extern const OSSL_DISPATCH x448_pub_print_serializer_functions[];
320extern const OSSL_DISPATCH x448_priv_der_serializer_functions[];
321extern const OSSL_DISPATCH x448_pub_der_serializer_functions[];
322extern const OSSL_DISPATCH x448_priv_pem_serializer_functions[];
323extern const OSSL_DISPATCH x448_pub_pem_serializer_functions[];
f552d900 324
244bc297
MC
325extern const OSSL_DISPATCH ed25519_priv_print_serializer_functions[];
326extern const OSSL_DISPATCH ed25519_pub_print_serializer_functions[];
327extern const OSSL_DISPATCH ed25519_priv_der_serializer_functions[];
328extern const OSSL_DISPATCH ed25519_pub_der_serializer_functions[];
329extern const OSSL_DISPATCH ed25519_priv_pem_serializer_functions[];
330extern const OSSL_DISPATCH ed25519_pub_pem_serializer_functions[];
331
332extern const OSSL_DISPATCH ed448_priv_print_serializer_functions[];
333extern const OSSL_DISPATCH ed448_pub_print_serializer_functions[];
334extern const OSSL_DISPATCH ed448_priv_der_serializer_functions[];
335extern const OSSL_DISPATCH ed448_pub_der_serializer_functions[];
336extern const OSSL_DISPATCH ed448_priv_pem_serializer_functions[];
337extern const OSSL_DISPATCH ed448_pub_pem_serializer_functions[];
338
f552d900
SL
339extern const OSSL_DISPATCH ec_priv_text_serializer_functions[];
340extern const OSSL_DISPATCH ec_pub_text_serializer_functions[];
341extern const OSSL_DISPATCH ec_param_text_serializer_functions[];
342extern const OSSL_DISPATCH ec_priv_der_serializer_functions[];
343extern const OSSL_DISPATCH ec_pub_der_serializer_functions[];
344extern const OSSL_DISPATCH ec_param_der_serializer_functions[];
345extern const OSSL_DISPATCH ec_priv_pem_serializer_functions[];
346extern const OSSL_DISPATCH ec_pub_pem_serializer_functions[];
347extern const OSSL_DISPATCH ec_param_pem_serializer_functions[];