2019-04-03 23:39:34 +08:00
|
|
|
/*
|
2020-02-16 17:54:08 +08:00
|
|
|
* Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2019-04-03 23:39:34 +08:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
|
|
|
*/
|
|
|
|
|
2020-05-08 08:22:45 +08:00
|
|
|
#include <openssl/core.h>
|
|
|
|
#include <openssl/types.h>
|
|
|
|
|
2019-04-03 23:39:34 +08:00
|
|
|
/* Digests */
|
2019-04-11 18:27:59 +08:00
|
|
|
extern const OSSL_DISPATCH sha1_functions[];
|
|
|
|
extern const OSSL_DISPATCH sha224_functions[];
|
2019-04-03 23:39:34 +08:00
|
|
|
extern const OSSL_DISPATCH sha256_functions[];
|
2019-04-11 18:27:59 +08:00
|
|
|
extern const OSSL_DISPATCH sha384_functions[];
|
|
|
|
extern const OSSL_DISPATCH sha512_functions[];
|
|
|
|
extern const OSSL_DISPATCH sha512_224_functions[];
|
|
|
|
extern const OSSL_DISPATCH sha512_256_functions[];
|
|
|
|
extern const OSSL_DISPATCH sha3_224_functions[];
|
|
|
|
extern const OSSL_DISPATCH sha3_256_functions[];
|
|
|
|
extern const OSSL_DISPATCH sha3_384_functions[];
|
|
|
|
extern const OSSL_DISPATCH sha3_512_functions[];
|
|
|
|
extern const OSSL_DISPATCH keccak_kmac_128_functions[];
|
|
|
|
extern const OSSL_DISPATCH keccak_kmac_256_functions[];
|
|
|
|
extern const OSSL_DISPATCH shake_128_functions[];
|
|
|
|
extern const OSSL_DISPATCH shake_256_functions[];
|
|
|
|
extern const OSSL_DISPATCH blake2s256_functions[];
|
|
|
|
extern const OSSL_DISPATCH blake2b512_functions[];
|
|
|
|
extern const OSSL_DISPATCH md5_functions[];
|
|
|
|
extern const OSSL_DISPATCH md5_sha1_functions[];
|
|
|
|
extern const OSSL_DISPATCH sm3_functions[];
|
|
|
|
extern const OSSL_DISPATCH md2_functions[];
|
|
|
|
extern const OSSL_DISPATCH md4_functions[];
|
|
|
|
extern const OSSL_DISPATCH mdc2_functions[];
|
|
|
|
extern const OSSL_DISPATCH wp_functions[];
|
|
|
|
extern const OSSL_DISPATCH ripemd160_functions[];
|
2019-04-03 23:39:34 +08:00
|
|
|
|
|
|
|
/* Ciphers */
|
2020-01-09 00:16:22 +08:00
|
|
|
extern const OSSL_DISPATCH null_functions[];
|
2019-04-03 23:39:34 +08:00
|
|
|
extern const OSSL_DISPATCH aes256ecb_functions[];
|
2019-04-03 23:53:22 +08:00
|
|
|
extern const OSSL_DISPATCH aes192ecb_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes128ecb_functions[];
|
2019-04-04 01:01:21 +08:00
|
|
|
extern const OSSL_DISPATCH aes256cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes192cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes128cbc_functions[];
|
2020-06-08 12:33:27 +08:00
|
|
|
extern const OSSL_DISPATCH aes256cbc_cts_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes192cbc_cts_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes128cbc_cts_functions[];
|
2019-04-08 23:55:34 +08:00
|
|
|
extern const OSSL_DISPATCH aes256ofb_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes192ofb_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes128ofb_functions[];
|
2019-04-09 00:13:01 +08:00
|
|
|
extern const OSSL_DISPATCH aes256cfb_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes192cfb_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes128cfb_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes256cfb1_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes192cfb1_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes128cfb1_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes256cfb8_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes192cfb8_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes128cfb8_functions[];
|
2019-04-09 00:19:59 +08:00
|
|
|
extern const OSSL_DISPATCH aes256ctr_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes192ctr_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes128ctr_functions[];
|
2019-09-14 07:27:49 +08:00
|
|
|
extern const OSSL_DISPATCH aes256xts_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes128xts_functions[];
|
2019-09-19 18:10:25 +08:00
|
|
|
#ifndef OPENSSL_NO_OCB
|
|
|
|
extern const OSSL_DISPATCH aes256ocb_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes192ocb_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes128ocb_functions[];
|
|
|
|
#endif /* OPENSSL_NO_OCB */
|
2019-07-31 19:55:16 +08:00
|
|
|
extern const OSSL_DISPATCH aes256gcm_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes192gcm_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes128gcm_functions[];
|
2019-08-20 06:54:41 +08:00
|
|
|
extern const OSSL_DISPATCH aes256ccm_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes192ccm_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes128ccm_functions[];
|
2019-07-10 09:42:03 +08:00
|
|
|
extern const OSSL_DISPATCH aes256wrap_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes192wrap_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes128wrap_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes256wrappad_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes192wrappad_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes128wrappad_functions[];
|
2020-01-06 11:02:16 +08:00
|
|
|
extern const OSSL_DISPATCH aes256cbc_hmac_sha1_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes128cbc_hmac_sha1_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes256cbc_hmac_sha256_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes128cbc_hmac_sha256_functions[];
|
2019-07-10 09:42:03 +08:00
|
|
|
|
2019-07-31 19:55:16 +08:00
|
|
|
#ifndef OPENSSL_NO_ARIA
|
|
|
|
extern const OSSL_DISPATCH aria256gcm_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria192gcm_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria128gcm_functions[];
|
2019-08-20 06:54:41 +08:00
|
|
|
extern const OSSL_DISPATCH aria256ccm_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria192ccm_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria128ccm_functions[];
|
2019-08-22 09:42:54 +08:00
|
|
|
extern const OSSL_DISPATCH aria256ecb_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria192ecb_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria128ecb_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria256cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria192cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria128cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria256ofb_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria192ofb_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria128ofb_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria256cfb_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria192cfb_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria128cfb_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria256cfb1_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria192cfb1_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria128cfb1_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria256cfb8_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria192cfb8_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria128cfb8_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria256ctr_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria192ctr_functions[];
|
|
|
|
extern const OSSL_DISPATCH aria128ctr_functions[];
|
2019-07-31 19:55:16 +08:00
|
|
|
#endif /* OPENSSL_NO_ARIA */
|
2019-08-22 09:42:54 +08:00
|
|
|
#ifndef OPENSSL_NO_CAMELLIA
|
|
|
|
extern const OSSL_DISPATCH camellia256ecb_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia192ecb_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia128ecb_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia256cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia192cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia128cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia256ofb_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia192ofb_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia128ofb_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia256cfb_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia192cfb_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia128cfb_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia256cfb1_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia192cfb1_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia128cfb1_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia256cfb8_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia192cfb8_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia128cfb8_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia256ctr_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia192ctr_functions[];
|
|
|
|
extern const OSSL_DISPATCH camellia128ctr_functions[];
|
|
|
|
#endif /* OPENSSL_NO_CAMELLIA */
|
2019-09-15 18:06:28 +08:00
|
|
|
#ifndef OPENSSL_NO_BF
|
|
|
|
extern const OSSL_DISPATCH blowfish128ecb_functions[];
|
|
|
|
extern const OSSL_DISPATCH blowfish128cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH blowfish64ofb64_functions[];
|
|
|
|
extern const OSSL_DISPATCH blowfish64cfb64_functions[];
|
|
|
|
#endif /* OPENSSL_NO_BF */
|
2019-09-18 13:57:08 +08:00
|
|
|
#ifndef OPENSSL_NO_IDEA
|
|
|
|
extern const OSSL_DISPATCH idea128ecb_functions[];
|
|
|
|
extern const OSSL_DISPATCH idea128cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH idea128ofb64_functions[];
|
|
|
|
extern const OSSL_DISPATCH idea128cfb64_functions[];
|
|
|
|
#endif /* OPENSSL_NO_IDEA */
|
2019-09-18 16:55:11 +08:00
|
|
|
#ifndef OPENSSL_NO_CAST
|
|
|
|
extern const OSSL_DISPATCH cast5128ecb_functions[];
|
|
|
|
extern const OSSL_DISPATCH cast5128cbc_functions[];
|
2020-05-02 11:51:35 +08:00
|
|
|
extern const OSSL_DISPATCH cast5128ofb64_functions[];
|
|
|
|
extern const OSSL_DISPATCH cast5128cfb64_functions[];
|
2019-09-18 16:55:11 +08:00
|
|
|
#endif /* OPENSSL_NO_CAST */
|
2019-09-18 20:13:59 +08:00
|
|
|
#ifndef OPENSSL_NO_SEED
|
|
|
|
extern const OSSL_DISPATCH seed128ecb_functions[];
|
|
|
|
extern const OSSL_DISPATCH seed128cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH seed128ofb128_functions[];
|
|
|
|
extern const OSSL_DISPATCH seed128cfb128_functions[];
|
|
|
|
#endif /* OPENSSL_NO_SEED */
|
2019-09-19 13:38:51 +08:00
|
|
|
#ifndef OPENSSL_NO_SM4
|
|
|
|
extern const OSSL_DISPATCH sm4128ecb_functions[];
|
|
|
|
extern const OSSL_DISPATCH sm4128cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH sm4128ctr_functions[];
|
|
|
|
extern const OSSL_DISPATCH sm4128ofb128_functions[];
|
|
|
|
extern const OSSL_DISPATCH sm4128cfb128_functions[];
|
|
|
|
#endif /* OPENSSL_NO_SM4 */
|
2019-10-03 14:05:49 +08:00
|
|
|
#ifndef OPENSSL_NO_RC5
|
|
|
|
extern const OSSL_DISPATCH rc5128ecb_functions[];
|
|
|
|
extern const OSSL_DISPATCH rc5128cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH rc5128ofb64_functions[];
|
|
|
|
extern const OSSL_DISPATCH rc5128cfb64_functions[];
|
|
|
|
#endif /* OPENSSL_NO_RC5 */
|
2019-10-08 14:42:28 +08:00
|
|
|
#ifndef OPENSSL_NO_RC2
|
|
|
|
extern const OSSL_DISPATCH rc2128ecb_functions[];
|
|
|
|
extern const OSSL_DISPATCH rc2128cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH rc240cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH rc264cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH rc2128cfb128_functions[];
|
|
|
|
extern const OSSL_DISPATCH rc2128ofb128_functions[];
|
|
|
|
#endif /* OPENSSL_NO_RC2 */
|
2019-09-23 12:35:16 +08:00
|
|
|
#ifndef OPENSSL_NO_DES
|
2019-08-26 15:05:08 +08:00
|
|
|
extern const OSSL_DISPATCH tdes_ede3_ecb_functions[];
|
|
|
|
extern const OSSL_DISPATCH tdes_ede3_cbc_functions[];
|
2020-04-14 04:34:56 +08:00
|
|
|
# ifndef FIPS_MODULE
|
2019-08-26 15:05:08 +08:00
|
|
|
extern const OSSL_DISPATCH tdes_ede3_ofb_functions[];
|
|
|
|
extern const OSSL_DISPATCH tdes_ede3_cfb_functions[];
|
|
|
|
extern const OSSL_DISPATCH tdes_ede3_cfb8_functions[];
|
|
|
|
extern const OSSL_DISPATCH tdes_ede3_cfb1_functions[];
|
|
|
|
|
|
|
|
extern const OSSL_DISPATCH tdes_ede2_ecb_functions[];
|
|
|
|
extern const OSSL_DISPATCH tdes_ede2_cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH tdes_ede2_ofb_functions[];
|
|
|
|
extern const OSSL_DISPATCH tdes_ede2_cfb_functions[];
|
|
|
|
|
|
|
|
extern const OSSL_DISPATCH tdes_desx_cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH tdes_wrap_cbc_functions[];
|
2019-09-23 12:35:16 +08:00
|
|
|
|
|
|
|
extern const OSSL_DISPATCH des_ecb_functions[];
|
|
|
|
extern const OSSL_DISPATCH des_cbc_functions[];
|
|
|
|
extern const OSSL_DISPATCH des_ofb64_functions[];
|
|
|
|
extern const OSSL_DISPATCH des_cfb64_functions[];
|
|
|
|
extern const OSSL_DISPATCH des_cfb1_functions[];
|
|
|
|
extern const OSSL_DISPATCH des_cfb8_functions[];
|
2020-04-14 04:34:56 +08:00
|
|
|
# endif /* FIPS_MODULE */
|
2019-09-23 12:35:16 +08:00
|
|
|
#endif /* OPENSSL_NO_DES */
|
2019-08-26 15:05:08 +08:00
|
|
|
|
2019-09-25 08:46:39 +08:00
|
|
|
#ifndef OPENSSL_NO_RC4
|
|
|
|
extern const OSSL_DISPATCH rc440_functions[];
|
|
|
|
extern const OSSL_DISPATCH rc4128_functions[];
|
2019-10-10 14:42:20 +08:00
|
|
|
# ifndef OPENSSL_NO_MD5
|
|
|
|
extern const OSSL_DISPATCH rc4_hmac_md5_functions[];
|
|
|
|
# endif /* OPENSSL_NO_MD5 */
|
2019-09-25 08:46:39 +08:00
|
|
|
#endif /* OPENSSL_NO_RC4 */
|
2019-10-16 14:18:42 +08:00
|
|
|
#ifndef OPENSSL_NO_CHACHA
|
|
|
|
extern const OSSL_DISPATCH chacha20_functions[];
|
|
|
|
# ifndef OPENSSL_NO_POLY1305
|
|
|
|
extern const OSSL_DISPATCH chacha20_poly1305_functions[];
|
|
|
|
# endif /* OPENSSL_NO_POLY1305 */
|
|
|
|
#endif /* OPENSSL_NO_CHACHA */
|
|
|
|
|
2019-09-25 08:46:39 +08:00
|
|
|
|
2019-11-08 10:14:44 +08:00
|
|
|
#ifndef OPENSSL_NO_SIV
|
|
|
|
extern const OSSL_DISPATCH aes128siv_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes192siv_functions[];
|
|
|
|
extern const OSSL_DISPATCH aes256siv_functions[];
|
|
|
|
#endif /* OPENSSL_NO_SIV */
|
|
|
|
|
2019-08-21 11:09:10 +08:00
|
|
|
/* MACs */
|
|
|
|
extern const OSSL_DISPATCH blake2bmac_functions[];
|
|
|
|
extern const OSSL_DISPATCH blake2smac_functions[];
|
|
|
|
extern const OSSL_DISPATCH cmac_functions[];
|
|
|
|
extern const OSSL_DISPATCH gmac_functions[];
|
|
|
|
extern const OSSL_DISPATCH hmac_functions[];
|
|
|
|
extern const OSSL_DISPATCH kmac128_functions[];
|
|
|
|
extern const OSSL_DISPATCH kmac256_functions[];
|
|
|
|
extern const OSSL_DISPATCH siphash_functions[];
|
|
|
|
extern const OSSL_DISPATCH poly1305_functions[];
|
|
|
|
|
|
|
|
/* KDFs / PRFs */
|
|
|
|
extern const OSSL_DISPATCH kdf_pbkdf2_functions[];
|
2020-08-11 08:29:02 +08:00
|
|
|
extern const OSSL_DISPATCH kdf_pkcs12_functions[];
|
2019-08-21 11:09:10 +08:00
|
|
|
#ifndef OPENSSL_NO_SCRYPT
|
|
|
|
extern const OSSL_DISPATCH kdf_scrypt_functions[];
|
|
|
|
#endif
|
|
|
|
extern const OSSL_DISPATCH kdf_tls1_prf_functions[];
|
|
|
|
extern const OSSL_DISPATCH kdf_hkdf_functions[];
|
|
|
|
extern const OSSL_DISPATCH kdf_sshkdf_functions[];
|
|
|
|
extern const OSSL_DISPATCH kdf_sskdf_functions[];
|
|
|
|
extern const OSSL_DISPATCH kdf_x963_kdf_functions[];
|
2019-09-11 05:46:44 +08:00
|
|
|
extern const OSSL_DISPATCH kdf_kbkdf_functions[];
|
2019-08-21 11:09:10 +08:00
|
|
|
#ifndef OPENSSL_NO_CMS
|
|
|
|
extern const OSSL_DISPATCH kdf_x942_kdf_functions[];
|
|
|
|
#endif
|
2019-09-18 04:35:23 +08:00
|
|
|
extern const OSSL_DISPATCH kdf_krb5kdf_functions[];
|
2019-08-21 11:09:10 +08:00
|
|
|
|
2020-05-08 08:22:45 +08:00
|
|
|
/* RNGs */
|
|
|
|
extern const OSSL_DISPATCH test_rng_functions[];
|
|
|
|
extern const OSSL_DISPATCH drbg_hash_functions[];
|
|
|
|
extern const OSSL_DISPATCH drbg_hmac_functions[];
|
|
|
|
extern const OSSL_DISPATCH drbg_ctr_functions[];
|
|
|
|
extern const OSSL_DISPATCH crngt_functions[];
|
2019-08-21 11:09:10 +08:00
|
|
|
|
2019-07-07 16:56:46 +08:00
|
|
|
/* Key management */
|
|
|
|
extern const OSSL_DISPATCH dh_keymgmt_functions[];
|
2020-08-04 09:15:18 +08:00
|
|
|
extern const OSSL_DISPATCH dhx_keymgmt_functions[];
|
2019-08-30 20:33:37 +08:00
|
|
|
extern const OSSL_DISPATCH dsa_keymgmt_functions[];
|
2019-10-16 03:31:45 +08:00
|
|
|
extern const OSSL_DISPATCH rsa_keymgmt_functions[];
|
2020-05-02 19:31:47 +08:00
|
|
|
extern const OSSL_DISPATCH rsapss_keymgmt_functions[];
|
2020-01-28 00:57:03 +08:00
|
|
|
extern const OSSL_DISPATCH x25519_keymgmt_functions[];
|
|
|
|
extern const OSSL_DISPATCH x448_keymgmt_functions[];
|
2020-02-18 00:37:24 +08:00
|
|
|
extern const OSSL_DISPATCH ed25519_keymgmt_functions[];
|
|
|
|
extern const OSSL_DISPATCH ed448_keymgmt_functions[];
|
2019-12-15 06:20:53 +08:00
|
|
|
extern const OSSL_DISPATCH ec_keymgmt_functions[];
|
2020-07-03 23:18:03 +08:00
|
|
|
extern const OSSL_DISPATCH kdf_keymgmt_functions[];
|
2020-08-20 00:33:38 +08:00
|
|
|
extern const OSSL_DISPATCH mac_legacy_keymgmt_functions[];
|
|
|
|
extern const OSSL_DISPATCH cmac_legacy_keymgmt_functions[];
|
2019-07-07 16:56:46 +08:00
|
|
|
|
2019-06-27 19:36:30 +08:00
|
|
|
/* Key Exchange */
|
2019-07-07 16:56:46 +08:00
|
|
|
extern const OSSL_DISPATCH dh_keyexch_functions[];
|
2020-01-25 01:13:40 +08:00
|
|
|
extern const OSSL_DISPATCH x25519_keyexch_functions[];
|
|
|
|
extern const OSSL_DISPATCH x448_keyexch_functions[];
|
2019-12-15 06:20:53 +08:00
|
|
|
extern const OSSL_DISPATCH ecdh_keyexch_functions[];
|
2020-07-21 01:06:55 +08:00
|
|
|
extern const OSSL_DISPATCH kdf_tls1_prf_keyexch_functions[];
|
|
|
|
extern const OSSL_DISPATCH kdf_hkdf_keyexch_functions[];
|
2020-07-31 22:05:57 +08:00
|
|
|
extern const OSSL_DISPATCH kdf_scrypt_keyexch_functions[];
|
2019-08-30 20:33:37 +08:00
|
|
|
|
|
|
|
/* Signature */
|
|
|
|
extern const OSSL_DISPATCH dsa_signature_functions[];
|
2019-12-01 22:01:50 +08:00
|
|
|
extern const OSSL_DISPATCH rsa_signature_functions[];
|
2020-03-05 23:42:13 +08:00
|
|
|
extern const OSSL_DISPATCH ed25519_signature_functions[];
|
|
|
|
extern const OSSL_DISPATCH ed448_signature_functions[];
|
2020-03-15 19:34:29 +08:00
|
|
|
extern const OSSL_DISPATCH ecdsa_signature_functions[];
|
2020-08-20 00:33:38 +08:00
|
|
|
extern const OSSL_DISPATCH mac_legacy_hmac_signature_functions[];
|
|
|
|
extern const OSSL_DISPATCH mac_legacy_siphash_signature_functions[];
|
|
|
|
extern const OSSL_DISPATCH mac_legacy_poly1305_signature_functions[];
|
|
|
|
extern const OSSL_DISPATCH mac_legacy_cmac_signature_functions[];
|
2019-10-28 21:40:39 +08:00
|
|
|
|
|
|
|
/* Asym Cipher */
|
|
|
|
extern const OSSL_DISPATCH rsa_asym_cipher_functions[];
|
2019-11-18 08:56:22 +08:00
|
|
|
|
2020-08-17 03:25:08 +08:00
|
|
|
/* Encoders */
|
2020-09-07 18:25:17 +08:00
|
|
|
extern const OSSL_DISPATCH rsa_priv_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH rsa_pub_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH rsa_priv_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH rsa_pub_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH rsa_priv_to_pem_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH rsa_pub_to_pem_encoder_functions[];
|
2020-02-28 06:08:59 +08:00
|
|
|
|
2020-09-07 18:25:17 +08:00
|
|
|
extern const OSSL_DISPATCH dh_priv_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH dh_pub_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH dh_param_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH dh_priv_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH dh_pub_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH dh_param_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH dh_priv_to_pem_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH dh_pub_to_pem_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH dh_param_to_pem_encoder_functions[];
|
2020-02-28 06:08:59 +08:00
|
|
|
|
2020-09-07 18:25:17 +08:00
|
|
|
extern const OSSL_DISPATCH dsa_priv_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH dsa_pub_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH dsa_param_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH dsa_priv_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH dsa_pub_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH dsa_param_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH dsa_priv_to_pem_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH dsa_pub_to_pem_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH dsa_param_to_pem_encoder_functions[];
|
2020-02-28 06:08:59 +08:00
|
|
|
|
2020-09-07 18:25:17 +08:00
|
|
|
extern const OSSL_DISPATCH x25519_priv_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH x25519_pub_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH x25519_priv_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH x25519_pub_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH x25519_priv_to_pem_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH x25519_pub_to_pem_encoder_functions[];
|
2020-02-28 06:08:59 +08:00
|
|
|
|
2020-09-07 18:25:17 +08:00
|
|
|
extern const OSSL_DISPATCH x448_priv_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH x448_pub_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH x448_priv_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH x448_pub_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH x448_priv_to_pem_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH x448_pub_to_pem_encoder_functions[];
|
2020-02-16 17:54:08 +08:00
|
|
|
|
2020-09-07 18:25:17 +08:00
|
|
|
extern const OSSL_DISPATCH ed25519_priv_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ed25519_pub_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ed25519_priv_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ed25519_pub_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ed25519_priv_to_pem_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ed25519_pub_to_pem_encoder_functions[];
|
2020-03-18 06:40:33 +08:00
|
|
|
|
2020-09-07 18:25:17 +08:00
|
|
|
extern const OSSL_DISPATCH ed448_priv_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ed448_pub_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ed448_priv_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ed448_pub_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ed448_priv_to_pem_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ed448_pub_to_pem_encoder_functions[];
|
2020-03-18 06:40:33 +08:00
|
|
|
|
2020-09-07 18:25:17 +08:00
|
|
|
extern const OSSL_DISPATCH ec_priv_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ec_pub_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ec_param_to_text_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ec_priv_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ec_pub_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ec_param_to_der_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ec_priv_to_pem_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ec_pub_to_pem_encoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH ec_param_to_pem_encoder_functions[];
|
2020-07-10 01:07:12 +08:00
|
|
|
|
2020-09-07 18:25:17 +08:00
|
|
|
/* Decoders */
|
2020-08-17 03:25:08 +08:00
|
|
|
extern const OSSL_DISPATCH der_to_dh_decoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH der_to_dhx_decoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH der_to_dsa_decoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH msblob_to_dsa_decoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH pvk_to_dsa_decoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH der_to_ec_decoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH der_to_x25519_decoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH der_to_x448_decoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH der_to_ed25519_decoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH der_to_ed448_decoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH der_to_rsa_decoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH der_to_rsapss_decoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH msblob_to_rsa_decoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH pvk_to_rsa_decoder_functions[];
|
|
|
|
extern const OSSL_DISPATCH pem_to_der_decoder_functions[];
|
2020-08-02 18:46:00 +08:00
|
|
|
|
|
|
|
extern const OSSL_DISPATCH file_store_functions[];
|