]> git.ipfire.org Git - thirdparty/openssl.git/blame - providers/common/include/internal/provider_algs.h
Refactor TLS1-PRF to create the MAC contexts early
[thirdparty/openssl.git] / providers / common / include / internal / provider_algs.h
CommitLineData
861b8f87
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/* 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 */
38extern const OSSL_DISPATCH aes256ecb_functions[];
f4a129bb
MC
39extern const OSSL_DISPATCH aes192ecb_functions[];
40extern const OSSL_DISPATCH aes128ecb_functions[];
718b133a
MC
41extern const OSSL_DISPATCH aes256cbc_functions[];
42extern const OSSL_DISPATCH aes192cbc_functions[];
43extern const OSSL_DISPATCH aes128cbc_functions[];
ed98df51
MC
44extern const OSSL_DISPATCH aes256ofb_functions[];
45extern const OSSL_DISPATCH aes192ofb_functions[];
46extern const OSSL_DISPATCH aes128ofb_functions[];
75dd6d64
MC
47extern const OSSL_DISPATCH aes256cfb_functions[];
48extern const OSSL_DISPATCH aes192cfb_functions[];
49extern const OSSL_DISPATCH aes128cfb_functions[];
50extern const OSSL_DISPATCH aes256cfb1_functions[];
51extern const OSSL_DISPATCH aes192cfb1_functions[];
52extern const OSSL_DISPATCH aes128cfb1_functions[];
53extern const OSSL_DISPATCH aes256cfb8_functions[];
54extern const OSSL_DISPATCH aes192cfb8_functions[];
55extern const OSSL_DISPATCH aes128cfb8_functions[];
819a7ae9
MC
56extern const OSSL_DISPATCH aes256ctr_functions[];
57extern const OSSL_DISPATCH aes192ctr_functions[];
58extern const OSSL_DISPATCH aes128ctr_functions[];
3a9f26f3
SL
59extern const OSSL_DISPATCH aes256xts_functions[];
60extern const OSSL_DISPATCH aes128xts_functions[];
a672a02a
SL
61extern const OSSL_DISPATCH aes256gcm_functions[];
62extern const OSSL_DISPATCH aes192gcm_functions[];
63extern const OSSL_DISPATCH aes128gcm_functions[];
3bfe9005
SL
64extern const OSSL_DISPATCH aes256ccm_functions[];
65extern const OSSL_DISPATCH aes192ccm_functions[];
66extern const OSSL_DISPATCH aes128ccm_functions[];
a672a02a
SL
67#ifndef OPENSSL_NO_ARIA
68extern const OSSL_DISPATCH aria256gcm_functions[];
69extern const OSSL_DISPATCH aria192gcm_functions[];
70extern const OSSL_DISPATCH aria128gcm_functions[];
3bfe9005
SL
71extern const OSSL_DISPATCH aria256ccm_functions[];
72extern const OSSL_DISPATCH aria192ccm_functions[];
73extern const OSSL_DISPATCH aria128ccm_functions[];
e1178600
SL
74extern const OSSL_DISPATCH aria256ecb_functions[];
75extern const OSSL_DISPATCH aria192ecb_functions[];
76extern const OSSL_DISPATCH aria128ecb_functions[];
77extern const OSSL_DISPATCH aria256cbc_functions[];
78extern const OSSL_DISPATCH aria192cbc_functions[];
79extern const OSSL_DISPATCH aria128cbc_functions[];
80extern const OSSL_DISPATCH aria256ofb_functions[];
81extern const OSSL_DISPATCH aria192ofb_functions[];
82extern const OSSL_DISPATCH aria128ofb_functions[];
83extern const OSSL_DISPATCH aria256cfb_functions[];
84extern const OSSL_DISPATCH aria192cfb_functions[];
85extern const OSSL_DISPATCH aria128cfb_functions[];
86extern const OSSL_DISPATCH aria256cfb1_functions[];
87extern const OSSL_DISPATCH aria192cfb1_functions[];
88extern const OSSL_DISPATCH aria128cfb1_functions[];
89extern const OSSL_DISPATCH aria256cfb8_functions[];
90extern const OSSL_DISPATCH aria192cfb8_functions[];
91extern const OSSL_DISPATCH aria128cfb8_functions[];
92extern const OSSL_DISPATCH aria256ctr_functions[];
93extern const OSSL_DISPATCH aria192ctr_functions[];
94extern const OSSL_DISPATCH aria128ctr_functions[];
a672a02a 95#endif /* OPENSSL_NO_ARIA */
e1178600
SL
96#ifndef OPENSSL_NO_CAMELLIA
97extern const OSSL_DISPATCH camellia256ecb_functions[];
98extern const OSSL_DISPATCH camellia192ecb_functions[];
99extern const OSSL_DISPATCH camellia128ecb_functions[];
100extern const OSSL_DISPATCH camellia256cbc_functions[];
101extern const OSSL_DISPATCH camellia192cbc_functions[];
102extern const OSSL_DISPATCH camellia128cbc_functions[];
103extern const OSSL_DISPATCH camellia256ofb_functions[];
104extern const OSSL_DISPATCH camellia192ofb_functions[];
105extern const OSSL_DISPATCH camellia128ofb_functions[];
106extern const OSSL_DISPATCH camellia256cfb_functions[];
107extern const OSSL_DISPATCH camellia192cfb_functions[];
108extern const OSSL_DISPATCH camellia128cfb_functions[];
109extern const OSSL_DISPATCH camellia256cfb1_functions[];
110extern const OSSL_DISPATCH camellia192cfb1_functions[];
111extern const OSSL_DISPATCH camellia128cfb1_functions[];
112extern const OSSL_DISPATCH camellia256cfb8_functions[];
113extern const OSSL_DISPATCH camellia192cfb8_functions[];
114extern const OSSL_DISPATCH camellia128cfb8_functions[];
115extern const OSSL_DISPATCH camellia256ctr_functions[];
116extern const OSSL_DISPATCH camellia192ctr_functions[];
117extern const OSSL_DISPATCH camellia128ctr_functions[];
118#endif /* OPENSSL_NO_CAMELLIA */
55c7dc79
SL
119#ifndef OPENSSL_NO_BF
120extern const OSSL_DISPATCH blowfish128ecb_functions[];
121extern const OSSL_DISPATCH blowfish128cbc_functions[];
122extern const OSSL_DISPATCH blowfish64ofb64_functions[];
123extern const OSSL_DISPATCH blowfish64cfb64_functions[];
124#endif /* OPENSSL_NO_BF */
f22431f2
SL
125#ifndef OPENSSL_NO_IDEA
126extern const OSSL_DISPATCH idea128ecb_functions[];
127extern const OSSL_DISPATCH idea128cbc_functions[];
128extern const OSSL_DISPATCH idea128ofb64_functions[];
129extern const OSSL_DISPATCH idea128cfb64_functions[];
130#endif /* OPENSSL_NO_IDEA */
18b00427
SL
131#ifndef OPENSSL_NO_CAST
132extern const OSSL_DISPATCH cast5128ecb_functions[];
133extern const OSSL_DISPATCH cast5128cbc_functions[];
134extern const OSSL_DISPATCH cast564ofb64_functions[];
135extern const OSSL_DISPATCH cast564cfb64_functions[];
136#endif /* OPENSSL_NO_CAST */
89e29174 137
4a42e264
SL
138extern const OSSL_DISPATCH tdes_ede3_ecb_functions[];
139extern const OSSL_DISPATCH tdes_ede3_cbc_functions[];
140
141#ifndef FIPS_MODE
142extern const OSSL_DISPATCH tdes_ede3_ofb_functions[];
143extern const OSSL_DISPATCH tdes_ede3_cfb_functions[];
144extern const OSSL_DISPATCH tdes_ede3_cfb8_functions[];
145extern const OSSL_DISPATCH tdes_ede3_cfb1_functions[];
146
147extern const OSSL_DISPATCH tdes_ede2_ecb_functions[];
148extern const OSSL_DISPATCH tdes_ede2_cbc_functions[];
149extern const OSSL_DISPATCH tdes_ede2_ofb_functions[];
150extern const OSSL_DISPATCH tdes_ede2_cfb_functions[];
151
152extern const OSSL_DISPATCH tdes_desx_cbc_functions[];
153extern const OSSL_DISPATCH tdes_wrap_cbc_functions[];
154#endif /* FIPS_MODE */
155
e3405a4a
P
156/* MACs */
157extern const OSSL_DISPATCH blake2bmac_functions[];
158extern const OSSL_DISPATCH blake2smac_functions[];
159extern const OSSL_DISPATCH cmac_functions[];
160extern const OSSL_DISPATCH gmac_functions[];
161extern const OSSL_DISPATCH hmac_functions[];
162extern const OSSL_DISPATCH kmac128_functions[];
163extern const OSSL_DISPATCH kmac256_functions[];
164extern const OSSL_DISPATCH siphash_functions[];
165extern const OSSL_DISPATCH poly1305_functions[];
166
167/* KDFs / PRFs */
168extern const OSSL_DISPATCH kdf_pbkdf2_functions[];
169#ifndef OPENSSL_NO_SCRYPT
170extern const OSSL_DISPATCH kdf_scrypt_functions[];
171#endif
172extern const OSSL_DISPATCH kdf_tls1_prf_functions[];
173extern const OSSL_DISPATCH kdf_hkdf_functions[];
174extern const OSSL_DISPATCH kdf_sshkdf_functions[];
175extern const OSSL_DISPATCH kdf_sskdf_functions[];
176extern const OSSL_DISPATCH kdf_x963_kdf_functions[];
177#ifndef OPENSSL_NO_CMS
178extern const OSSL_DISPATCH kdf_x942_kdf_functions[];
179#endif
180
181
8b84b075
RL
182/* Key management */
183extern const OSSL_DISPATCH dh_keymgmt_functions[];
4889dadc 184extern const OSSL_DISPATCH dsa_keymgmt_functions[];
8b84b075 185
89e29174 186/* Key Exchange */
8b84b075 187extern const OSSL_DISPATCH dh_keyexch_functions[];
4889dadc
MC
188
189/* Signature */
190extern const OSSL_DISPATCH dsa_signature_functions[];