Move SipHash to providers
[openssl.git] / providers / common / include / internal / provider_algs.h
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 */
11 extern const OSSL_DISPATCH sha1_functions[];
12 extern const OSSL_DISPATCH sha224_functions[];
13 extern const OSSL_DISPATCH sha256_functions[];
14 extern const OSSL_DISPATCH sha384_functions[];
15 extern const OSSL_DISPATCH sha512_functions[];
16 extern const OSSL_DISPATCH sha512_224_functions[];
17 extern const OSSL_DISPATCH sha512_256_functions[];
18 extern const OSSL_DISPATCH sha3_224_functions[];
19 extern const OSSL_DISPATCH sha3_256_functions[];
20 extern const OSSL_DISPATCH sha3_384_functions[];
21 extern const OSSL_DISPATCH sha3_512_functions[];
22 extern const OSSL_DISPATCH keccak_kmac_128_functions[];
23 extern const OSSL_DISPATCH keccak_kmac_256_functions[];
24 extern const OSSL_DISPATCH shake_128_functions[];
25 extern const OSSL_DISPATCH shake_256_functions[];
26 extern const OSSL_DISPATCH blake2s256_functions[];
27 extern const OSSL_DISPATCH blake2b512_functions[];
28 extern const OSSL_DISPATCH md5_functions[];
29 extern const OSSL_DISPATCH md5_sha1_functions[];
30 extern const OSSL_DISPATCH sm3_functions[];
31 extern const OSSL_DISPATCH nullmd_functions[];
32 extern const OSSL_DISPATCH md2_functions[];
33 extern const OSSL_DISPATCH md4_functions[];
34 extern const OSSL_DISPATCH mdc2_functions[];
35 extern const OSSL_DISPATCH wp_functions[];
36 extern const OSSL_DISPATCH ripemd160_functions[];
37
38 /* Ciphers */
39 extern const OSSL_DISPATCH aes256ecb_functions[];
40 extern const OSSL_DISPATCH aes192ecb_functions[];
41 extern const OSSL_DISPATCH aes128ecb_functions[];
42 extern const OSSL_DISPATCH aes256cbc_functions[];
43 extern const OSSL_DISPATCH aes192cbc_functions[];
44 extern const OSSL_DISPATCH aes128cbc_functions[];
45 extern const OSSL_DISPATCH aes256ofb_functions[];
46 extern const OSSL_DISPATCH aes192ofb_functions[];
47 extern const OSSL_DISPATCH aes128ofb_functions[];
48 extern const OSSL_DISPATCH aes256cfb_functions[];
49 extern const OSSL_DISPATCH aes192cfb_functions[];
50 extern const OSSL_DISPATCH aes128cfb_functions[];
51 extern const OSSL_DISPATCH aes256cfb1_functions[];
52 extern const OSSL_DISPATCH aes192cfb1_functions[];
53 extern const OSSL_DISPATCH aes128cfb1_functions[];
54 extern const OSSL_DISPATCH aes256cfb8_functions[];
55 extern const OSSL_DISPATCH aes192cfb8_functions[];
56 extern const OSSL_DISPATCH aes128cfb8_functions[];
57 extern const OSSL_DISPATCH aes256ctr_functions[];
58 extern const OSSL_DISPATCH aes192ctr_functions[];
59 extern const OSSL_DISPATCH aes128ctr_functions[];
60 extern const OSSL_DISPATCH aes256gcm_functions[];
61 extern const OSSL_DISPATCH aes192gcm_functions[];
62 extern const OSSL_DISPATCH aes128gcm_functions[];
63 #ifndef OPENSSL_NO_ARIA
64 extern const OSSL_DISPATCH aria256gcm_functions[];
65 extern const OSSL_DISPATCH aria192gcm_functions[];
66 extern const OSSL_DISPATCH aria128gcm_functions[];
67 #endif /* OPENSSL_NO_ARIA */
68
69 /* MACs */
70 extern const OSSL_DISPATCH blake2bmac_functions[];
71 extern const OSSL_DISPATCH blake2smac_functions[];
72 extern const OSSL_DISPATCH cmac_functions[];
73 extern const OSSL_DISPATCH gmac_functions[];
74 extern const OSSL_DISPATCH hmac_functions[];
75 extern const OSSL_DISPATCH kmac128_functions[];
76 extern const OSSL_DISPATCH kmac256_functions[];
77 extern const OSSL_DISPATCH siphash_functions[];
78
79 /* Key management */
80 extern const OSSL_DISPATCH dh_keymgmt_functions[];
81
82 /* Key Exchange */
83 extern const OSSL_DISPATCH dh_keyexch_functions[];