1 /* 2 * Copyright 2019-2021 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 <openssl/core.h> 11 #include <openssl/types.h> 12 13 /* Digests */ 14 extern const OSSL_DISPATCH ossl_sha1_functions[]; 15 extern const OSSL_DISPATCH ossl_sha224_functions[]; 16 extern const OSSL_DISPATCH ossl_sha256_functions[]; 17 extern const OSSL_DISPATCH ossl_sha384_functions[]; 18 extern const OSSL_DISPATCH ossl_sha512_functions[]; 19 extern const OSSL_DISPATCH ossl_sha512_224_functions[]; 20 extern const OSSL_DISPATCH ossl_sha512_256_functions[]; 21 extern const OSSL_DISPATCH ossl_sha3_224_functions[]; 22 extern const OSSL_DISPATCH ossl_sha3_256_functions[]; 23 extern const OSSL_DISPATCH ossl_sha3_384_functions[]; 24 extern const OSSL_DISPATCH ossl_sha3_512_functions[]; 25 extern const OSSL_DISPATCH ossl_keccak_224_functions[]; 26 extern const OSSL_DISPATCH ossl_keccak_256_functions[]; 27 extern const OSSL_DISPATCH ossl_keccak_384_functions[]; 28 extern const OSSL_DISPATCH ossl_keccak_512_functions[]; 29 extern const OSSL_DISPATCH ossl_keccak_kmac_128_functions[]; 30 extern const OSSL_DISPATCH ossl_keccak_kmac_256_functions[]; 31 extern const OSSL_DISPATCH ossl_shake_128_functions[]; 32 extern const OSSL_DISPATCH ossl_shake_256_functions[]; 33 extern const OSSL_DISPATCH ossl_blake2s256_functions[]; 34 extern const OSSL_DISPATCH ossl_blake2b512_functions[]; 35 extern const OSSL_DISPATCH ossl_md5_functions[]; 36 extern const OSSL_DISPATCH ossl_md5_sha1_functions[]; 37 extern const OSSL_DISPATCH ossl_sm3_functions[]; 38 extern const OSSL_DISPATCH ossl_md2_functions[]; 39 extern const OSSL_DISPATCH ossl_md4_functions[]; 40 extern const OSSL_DISPATCH ossl_mdc2_functions[]; 41 extern const OSSL_DISPATCH ossl_wp_functions[]; 42 extern const OSSL_DISPATCH ossl_ripemd160_functions[]; 43 44 /* Ciphers */ 45 extern const OSSL_DISPATCH ossl_null_functions[]; 46 extern const OSSL_DISPATCH ossl_aes256ecb_functions[]; 47 extern const OSSL_DISPATCH ossl_aes192ecb_functions[]; 48 extern const OSSL_DISPATCH ossl_aes128ecb_functions[]; 49 extern const OSSL_DISPATCH ossl_aes256cbc_functions[]; 50 extern const OSSL_DISPATCH ossl_aes192cbc_functions[]; 51 extern const OSSL_DISPATCH ossl_aes128cbc_functions[]; 52 extern const OSSL_DISPATCH ossl_aes256cbc_cts_functions[]; 53 extern const OSSL_DISPATCH ossl_aes192cbc_cts_functions[]; 54 extern const OSSL_DISPATCH ossl_aes128cbc_cts_functions[]; 55 extern const OSSL_DISPATCH ossl_aes256ofb_functions[]; 56 extern const OSSL_DISPATCH ossl_aes192ofb_functions[]; 57 extern const OSSL_DISPATCH ossl_aes128ofb_functions[]; 58 extern const OSSL_DISPATCH ossl_aes256cfb_functions[]; 59 extern const OSSL_DISPATCH ossl_aes192cfb_functions[]; 60 extern const OSSL_DISPATCH ossl_aes128cfb_functions[]; 61 extern const OSSL_DISPATCH ossl_aes256cfb1_functions[]; 62 extern const OSSL_DISPATCH ossl_aes192cfb1_functions[]; 63 extern const OSSL_DISPATCH ossl_aes128cfb1_functions[]; 64 extern const OSSL_DISPATCH ossl_aes256cfb8_functions[]; 65 extern const OSSL_DISPATCH ossl_aes192cfb8_functions[]; 66 extern const OSSL_DISPATCH ossl_aes128cfb8_functions[]; 67 extern const OSSL_DISPATCH ossl_aes256ctr_functions[]; 68 extern const OSSL_DISPATCH ossl_aes192ctr_functions[]; 69 extern const OSSL_DISPATCH ossl_aes128ctr_functions[]; 70 extern const OSSL_DISPATCH ossl_aes256xts_functions[]; 71 extern const OSSL_DISPATCH ossl_aes128xts_functions[]; 72 #ifndef OPENSSL_NO_OCB 73 extern const OSSL_DISPATCH ossl_aes256ocb_functions[]; 74 extern const OSSL_DISPATCH ossl_aes192ocb_functions[]; 75 extern const OSSL_DISPATCH ossl_aes128ocb_functions[]; 76 #endif /* OPENSSL_NO_OCB */ 77 extern const OSSL_DISPATCH ossl_aes256gcm_functions[]; 78 extern const OSSL_DISPATCH ossl_aes192gcm_functions[]; 79 extern const OSSL_DISPATCH ossl_aes128gcm_functions[]; 80 extern const OSSL_DISPATCH ossl_aes256ccm_functions[]; 81 extern const OSSL_DISPATCH ossl_aes192ccm_functions[]; 82 extern const OSSL_DISPATCH ossl_aes128ccm_functions[]; 83 extern const OSSL_DISPATCH ossl_aes256wrap_functions[]; 84 extern const OSSL_DISPATCH ossl_aes192wrap_functions[]; 85 extern const OSSL_DISPATCH ossl_aes128wrap_functions[]; 86 extern const OSSL_DISPATCH ossl_aes256wrappad_functions[]; 87 extern const OSSL_DISPATCH ossl_aes192wrappad_functions[]; 88 extern const OSSL_DISPATCH ossl_aes128wrappad_functions[]; 89 extern const OSSL_DISPATCH ossl_aes256wrapinv_functions[]; 90 extern const OSSL_DISPATCH ossl_aes192wrapinv_functions[]; 91 extern const OSSL_DISPATCH ossl_aes128wrapinv_functions[]; 92 extern const OSSL_DISPATCH ossl_aes256wrappadinv_functions[]; 93 extern const OSSL_DISPATCH ossl_aes192wrappadinv_functions[]; 94 extern const OSSL_DISPATCH ossl_aes128wrappadinv_functions[]; 95 extern const OSSL_DISPATCH ossl_aes256cbc_hmac_sha1_functions[]; 96 extern const OSSL_DISPATCH ossl_aes128cbc_hmac_sha1_functions[]; 97 extern const OSSL_DISPATCH ossl_aes256cbc_hmac_sha256_functions[]; 98 extern const OSSL_DISPATCH ossl_aes128cbc_hmac_sha256_functions[]; 99 100 #ifndef OPENSSL_NO_ARIA 101 extern const OSSL_DISPATCH ossl_aria256gcm_functions[]; 102 extern const OSSL_DISPATCH ossl_aria192gcm_functions[]; 103 extern const OSSL_DISPATCH ossl_aria128gcm_functions[]; 104 extern const OSSL_DISPATCH ossl_aria256ccm_functions[]; 105 extern const OSSL_DISPATCH ossl_aria192ccm_functions[]; 106 extern const OSSL_DISPATCH ossl_aria128ccm_functions[]; 107 extern const OSSL_DISPATCH ossl_aria256ecb_functions[]; 108 extern const OSSL_DISPATCH ossl_aria192ecb_functions[]; 109 extern const OSSL_DISPATCH ossl_aria128ecb_functions[]; 110 extern const OSSL_DISPATCH ossl_aria256cbc_functions[]; 111 extern const OSSL_DISPATCH ossl_aria192cbc_functions[]; 112 extern const OSSL_DISPATCH ossl_aria128cbc_functions[]; 113 extern const OSSL_DISPATCH ossl_aria256ofb_functions[]; 114 extern const OSSL_DISPATCH ossl_aria192ofb_functions[]; 115 extern const OSSL_DISPATCH ossl_aria128ofb_functions[]; 116 extern const OSSL_DISPATCH ossl_aria256cfb_functions[]; 117 extern const OSSL_DISPATCH ossl_aria192cfb_functions[]; 118 extern const OSSL_DISPATCH ossl_aria128cfb_functions[]; 119 extern const OSSL_DISPATCH ossl_aria256cfb1_functions[]; 120 extern const OSSL_DISPATCH ossl_aria192cfb1_functions[]; 121 extern const OSSL_DISPATCH ossl_aria128cfb1_functions[]; 122 extern const OSSL_DISPATCH ossl_aria256cfb8_functions[]; 123 extern const OSSL_DISPATCH ossl_aria192cfb8_functions[]; 124 extern const OSSL_DISPATCH ossl_aria128cfb8_functions[]; 125 extern const OSSL_DISPATCH ossl_aria256ctr_functions[]; 126 extern const OSSL_DISPATCH ossl_aria192ctr_functions[]; 127 extern const OSSL_DISPATCH ossl_aria128ctr_functions[]; 128 #endif /* OPENSSL_NO_ARIA */ 129 #ifndef OPENSSL_NO_CAMELLIA 130 extern const OSSL_DISPATCH ossl_camellia256ecb_functions[]; 131 extern const OSSL_DISPATCH ossl_camellia192ecb_functions[]; 132 extern const OSSL_DISPATCH ossl_camellia128ecb_functions[]; 133 extern const OSSL_DISPATCH ossl_camellia256cbc_functions[]; 134 extern const OSSL_DISPATCH ossl_camellia192cbc_functions[]; 135 extern const OSSL_DISPATCH ossl_camellia128cbc_functions[]; 136 extern const OSSL_DISPATCH ossl_camellia256cbc_cts_functions[]; 137 extern const OSSL_DISPATCH ossl_camellia192cbc_cts_functions[]; 138 extern const OSSL_DISPATCH ossl_camellia128cbc_cts_functions[]; 139 extern const OSSL_DISPATCH ossl_camellia256ofb_functions[]; 140 extern const OSSL_DISPATCH ossl_camellia192ofb_functions[]; 141 extern const OSSL_DISPATCH ossl_camellia128ofb_functions[]; 142 extern const OSSL_DISPATCH ossl_camellia256cfb_functions[]; 143 extern const OSSL_DISPATCH ossl_camellia192cfb_functions[]; 144 extern const OSSL_DISPATCH ossl_camellia128cfb_functions[]; 145 extern const OSSL_DISPATCH ossl_camellia256cfb1_functions[]; 146 extern const OSSL_DISPATCH ossl_camellia192cfb1_functions[]; 147 extern const OSSL_DISPATCH ossl_camellia128cfb1_functions[]; 148 extern const OSSL_DISPATCH ossl_camellia256cfb8_functions[]; 149 extern const OSSL_DISPATCH ossl_camellia192cfb8_functions[]; 150 extern const OSSL_DISPATCH ossl_camellia128cfb8_functions[]; 151 extern const OSSL_DISPATCH ossl_camellia256ctr_functions[]; 152 extern const OSSL_DISPATCH ossl_camellia192ctr_functions[]; 153 extern const OSSL_DISPATCH ossl_camellia128ctr_functions[]; 154 #endif /* OPENSSL_NO_CAMELLIA */ 155 #ifndef OPENSSL_NO_BF 156 extern const OSSL_DISPATCH ossl_blowfish128ecb_functions[]; 157 extern const OSSL_DISPATCH ossl_blowfish128cbc_functions[]; 158 extern const OSSL_DISPATCH ossl_blowfish64ofb64_functions[]; 159 extern const OSSL_DISPATCH ossl_blowfish64cfb64_functions[]; 160 #endif /* OPENSSL_NO_BF */ 161 #ifndef OPENSSL_NO_IDEA 162 extern const OSSL_DISPATCH ossl_idea128ecb_functions[]; 163 extern const OSSL_DISPATCH ossl_idea128cbc_functions[]; 164 extern const OSSL_DISPATCH ossl_idea128ofb64_functions[]; 165 extern const OSSL_DISPATCH ossl_idea128cfb64_functions[]; 166 #endif /* OPENSSL_NO_IDEA */ 167 #ifndef OPENSSL_NO_CAST 168 extern const OSSL_DISPATCH ossl_cast5128ecb_functions[]; 169 extern const OSSL_DISPATCH ossl_cast5128cbc_functions[]; 170 extern const OSSL_DISPATCH ossl_cast5128ofb64_functions[]; 171 extern const OSSL_DISPATCH ossl_cast5128cfb64_functions[]; 172 #endif /* OPENSSL_NO_CAST */ 173 #ifndef OPENSSL_NO_SEED 174 extern const OSSL_DISPATCH ossl_seed128ecb_functions[]; 175 extern const OSSL_DISPATCH ossl_seed128cbc_functions[]; 176 extern const OSSL_DISPATCH ossl_seed128ofb128_functions[]; 177 extern const OSSL_DISPATCH ossl_seed128cfb128_functions[]; 178 #endif /* OPENSSL_NO_SEED */ 179 #ifndef OPENSSL_NO_SM4 180 extern const OSSL_DISPATCH ossl_sm4128gcm_functions[]; 181 extern const OSSL_DISPATCH ossl_sm4128ccm_functions[]; 182 extern const OSSL_DISPATCH ossl_sm4128ecb_functions[]; 183 extern const OSSL_DISPATCH ossl_sm4128cbc_functions[]; 184 extern const OSSL_DISPATCH ossl_sm4128ctr_functions[]; 185 extern const OSSL_DISPATCH ossl_sm4128ofb128_functions[]; 186 extern const OSSL_DISPATCH ossl_sm4128cfb128_functions[]; 187 #endif /* OPENSSL_NO_SM4 */ 188 #ifndef OPENSSL_NO_RC5 189 extern const OSSL_DISPATCH ossl_rc5128ecb_functions[]; 190 extern const OSSL_DISPATCH ossl_rc5128cbc_functions[]; 191 extern const OSSL_DISPATCH ossl_rc5128ofb64_functions[]; 192 extern const OSSL_DISPATCH ossl_rc5128cfb64_functions[]; 193 #endif /* OPENSSL_NO_RC5 */ 194 #ifndef OPENSSL_NO_RC2 195 extern const OSSL_DISPATCH ossl_rc2128ecb_functions[]; 196 extern const OSSL_DISPATCH ossl_rc2128cbc_functions[]; 197 extern const OSSL_DISPATCH ossl_rc240cbc_functions[]; 198 extern const OSSL_DISPATCH ossl_rc264cbc_functions[]; 199 extern const OSSL_DISPATCH ossl_rc2128cfb128_functions[]; 200 extern const OSSL_DISPATCH ossl_rc2128ofb128_functions[]; 201 #endif /* OPENSSL_NO_RC2 */ 202 #ifndef OPENSSL_NO_DES 203 extern const OSSL_DISPATCH ossl_tdes_ede3_ecb_functions[]; 204 extern const OSSL_DISPATCH ossl_tdes_ede3_cbc_functions[]; 205 # ifndef FIPS_MODULE 206 extern const OSSL_DISPATCH ossl_tdes_ede3_ofb_functions[]; 207 extern const OSSL_DISPATCH ossl_tdes_ede3_cfb_functions[]; 208 extern const OSSL_DISPATCH ossl_tdes_ede3_cfb8_functions[]; 209 extern const OSSL_DISPATCH ossl_tdes_ede3_cfb1_functions[]; 210 211 extern const OSSL_DISPATCH ossl_tdes_ede2_ecb_functions[]; 212 extern const OSSL_DISPATCH ossl_tdes_ede2_cbc_functions[]; 213 extern const OSSL_DISPATCH ossl_tdes_ede2_ofb_functions[]; 214 extern const OSSL_DISPATCH ossl_tdes_ede2_cfb_functions[]; 215 216 extern const OSSL_DISPATCH ossl_tdes_desx_cbc_functions[]; 217 extern const OSSL_DISPATCH ossl_tdes_wrap_cbc_functions[]; 218 219 extern const OSSL_DISPATCH ossl_des_ecb_functions[]; 220 extern const OSSL_DISPATCH ossl_des_cbc_functions[]; 221 extern const OSSL_DISPATCH ossl_des_ofb64_functions[]; 222 extern const OSSL_DISPATCH ossl_des_cfb64_functions[]; 223 extern const OSSL_DISPATCH ossl_des_cfb1_functions[]; 224 extern const OSSL_DISPATCH ossl_des_cfb8_functions[]; 225 # endif /* FIPS_MODULE */ 226 #endif /* OPENSSL_NO_DES */ 227 228 #ifndef OPENSSL_NO_RC4 229 extern const OSSL_DISPATCH ossl_rc440_functions[]; 230 extern const OSSL_DISPATCH ossl_rc4128_functions[]; 231 # ifndef OPENSSL_NO_MD5 232 extern const OSSL_DISPATCH ossl_rc4_hmac_ossl_md5_functions[]; 233 # endif /* OPENSSL_NO_MD5 */ 234 #endif /* OPENSSL_NO_RC4 */ 235 #ifndef OPENSSL_NO_CHACHA 236 extern const OSSL_DISPATCH ossl_chacha20_functions[]; 237 # ifndef OPENSSL_NO_POLY1305 238 extern const OSSL_DISPATCH ossl_chacha20_ossl_poly1305_functions[]; 239 # endif /* OPENSSL_NO_POLY1305 */ 240 #endif /* OPENSSL_NO_CHACHA */ 241 242 243 #ifndef OPENSSL_NO_SIV 244 extern const OSSL_DISPATCH ossl_aes128siv_functions[]; 245 extern const OSSL_DISPATCH ossl_aes192siv_functions[]; 246 extern const OSSL_DISPATCH ossl_aes256siv_functions[]; 247 #endif /* OPENSSL_NO_SIV */ 248 249 /* MACs */ 250 extern const OSSL_DISPATCH ossl_blake2bmac_functions[]; 251 extern const OSSL_DISPATCH ossl_blake2smac_functions[]; 252 extern const OSSL_DISPATCH ossl_cmac_functions[]; 253 extern const OSSL_DISPATCH ossl_gmac_functions[]; 254 extern const OSSL_DISPATCH ossl_hmac_functions[]; 255 extern const OSSL_DISPATCH ossl_kmac128_functions[]; 256 extern const OSSL_DISPATCH ossl_kmac256_functions[]; 257 extern const OSSL_DISPATCH ossl_siphash_functions[]; 258 extern const OSSL_DISPATCH ossl_poly1305_functions[]; 259 260 /* KDFs / PRFs */ 261 extern const OSSL_DISPATCH ossl_kdf_pbkdf1_functions[]; 262 extern const OSSL_DISPATCH ossl_kdf_pbkdf2_functions[]; 263 extern const OSSL_DISPATCH ossl_kdf_pvk_functions[]; 264 extern const OSSL_DISPATCH ossl_kdf_pkcs12_functions[]; 265 #ifndef OPENSSL_NO_SCRYPT 266 extern const OSSL_DISPATCH ossl_kdf_scrypt_functions[]; 267 #endif 268 extern const OSSL_DISPATCH ossl_kdf_tls1_prf_functions[]; 269 extern const OSSL_DISPATCH ossl_kdf_hkdf_functions[]; 270 extern const OSSL_DISPATCH ossl_kdf_tls1_3_kdf_functions[]; 271 extern const OSSL_DISPATCH ossl_kdf_sshkdf_functions[]; 272 extern const OSSL_DISPATCH ossl_kdf_sskdf_functions[]; 273 extern const OSSL_DISPATCH ossl_kdf_x963_kdf_functions[]; 274 extern const OSSL_DISPATCH ossl_kdf_kbkdf_functions[]; 275 extern const OSSL_DISPATCH ossl_kdf_x942_kdf_functions[]; 276 extern const OSSL_DISPATCH ossl_kdf_krb5kdf_functions[]; 277 278 /* RNGs */ 279 extern const OSSL_DISPATCH ossl_test_rng_functions[]; 280 extern const OSSL_DISPATCH ossl_seed_src_functions[]; 281 extern const OSSL_DISPATCH ossl_drbg_hash_functions[]; 282 extern const OSSL_DISPATCH ossl_drbg_ossl_hmac_functions[]; 283 extern const OSSL_DISPATCH ossl_drbg_ctr_functions[]; 284 extern const OSSL_DISPATCH crngt_functions[]; 285 286 /* Key management */ 287 extern const OSSL_DISPATCH ossl_dh_keymgmt_functions[]; 288 extern const OSSL_DISPATCH ossl_dhx_keymgmt_functions[]; 289 extern const OSSL_DISPATCH ossl_dsa_keymgmt_functions[]; 290 extern const OSSL_DISPATCH ossl_rsa_keymgmt_functions[]; 291 extern const OSSL_DISPATCH ossl_rsapss_keymgmt_functions[]; 292 extern const OSSL_DISPATCH ossl_x25519_keymgmt_functions[]; 293 extern const OSSL_DISPATCH ossl_x448_keymgmt_functions[]; 294 extern const OSSL_DISPATCH ossl_ed25519_keymgmt_functions[]; 295 extern const OSSL_DISPATCH ossl_ed448_keymgmt_functions[]; 296 extern const OSSL_DISPATCH ossl_ec_keymgmt_functions[]; 297 extern const OSSL_DISPATCH ossl_kdf_keymgmt_functions[]; 298 extern const OSSL_DISPATCH ossl_mac_legacy_keymgmt_functions[]; 299 extern const OSSL_DISPATCH ossl_cmac_legacy_keymgmt_functions[]; 300 #ifndef OPENSSL_NO_SM2 301 extern const OSSL_DISPATCH ossl_sm2_keymgmt_functions[]; 302 #endif 303 304 /* Key Exchange */ 305 extern const OSSL_DISPATCH ossl_dh_keyexch_functions[]; 306 extern const OSSL_DISPATCH ossl_x25519_keyexch_functions[]; 307 extern const OSSL_DISPATCH ossl_x448_keyexch_functions[]; 308 extern const OSSL_DISPATCH ossl_ecdh_keyexch_functions[]; 309 extern const OSSL_DISPATCH ossl_kdf_tls1_prf_keyexch_functions[]; 310 extern const OSSL_DISPATCH ossl_kdf_hkdf_keyexch_functions[]; 311 extern const OSSL_DISPATCH ossl_kdf_scrypt_keyexch_functions[]; 312 313 /* Signature */ 314 extern const OSSL_DISPATCH ossl_dsa_signature_functions[]; 315 extern const OSSL_DISPATCH ossl_rsa_signature_functions[]; 316 extern const OSSL_DISPATCH ossl_ed25519_signature_functions[]; 317 extern const OSSL_DISPATCH ossl_ed448_signature_functions[]; 318 extern const OSSL_DISPATCH ossl_ecdsa_signature_functions[]; 319 extern const OSSL_DISPATCH ossl_mac_legacy_hmac_signature_functions[]; 320 extern const OSSL_DISPATCH ossl_mac_legacy_siphash_signature_functions[]; 321 extern const OSSL_DISPATCH ossl_mac_legacy_poly1305_signature_functions[]; 322 extern const OSSL_DISPATCH ossl_mac_legacy_cmac_signature_functions[]; 323 extern const OSSL_DISPATCH ossl_sm2_signature_functions[]; 324 325 /* Asym Cipher */ 326 extern const OSSL_DISPATCH ossl_rsa_asym_cipher_functions[]; 327 #ifndef OPENSSL_NO_SM2 328 extern const OSSL_DISPATCH ossl_sm2_asym_cipher_functions[]; 329 #endif 330 331 /* Asym Key encapsulation */ 332 extern const OSSL_DISPATCH ossl_rsa_asym_kem_functions[]; 333 334 /* Encoders */ 335 extern const OSSL_DISPATCH ossl_rsa_to_PKCS1_der_encoder_functions[]; 336 extern const OSSL_DISPATCH ossl_rsa_to_PKCS1_pem_encoder_functions[]; 337 extern const OSSL_DISPATCH ossl_rsa_to_EncryptedPrivateKeyInfo_der_encoder_functions[]; 338 extern const OSSL_DISPATCH ossl_rsa_to_EncryptedPrivateKeyInfo_pem_encoder_functions[]; 339 extern const OSSL_DISPATCH ossl_rsa_to_PrivateKeyInfo_der_encoder_functions[]; 340 extern const OSSL_DISPATCH ossl_rsa_to_PrivateKeyInfo_pem_encoder_functions[]; 341 extern const OSSL_DISPATCH ossl_rsa_to_RSA_der_encoder_functions[]; 342 extern const OSSL_DISPATCH ossl_rsa_to_RSA_pem_encoder_functions[]; 343 extern const OSSL_DISPATCH ossl_rsa_to_SubjectPublicKeyInfo_der_encoder_functions[]; 344 extern const OSSL_DISPATCH ossl_rsa_to_SubjectPublicKeyInfo_pem_encoder_functions[]; 345 extern const OSSL_DISPATCH ossl_rsa_to_msblob_encoder_functions[]; 346 extern const OSSL_DISPATCH ossl_rsa_to_pvk_encoder_functions[]; 347 extern const OSSL_DISPATCH ossl_rsa_to_text_encoder_functions[]; 348 extern const OSSL_DISPATCH ossl_rsa_to_type_specific_keypair_der_encoder_functions[]; 349 extern const OSSL_DISPATCH ossl_rsa_to_type_specific_keypair_pem_encoder_functions[]; 350 351 extern const OSSL_DISPATCH ossl_rsapss_to_PKCS1_der_encoder_functions[]; 352 extern const OSSL_DISPATCH ossl_rsapss_to_PKCS1_pem_encoder_functions[]; 353 extern const OSSL_DISPATCH ossl_rsapss_to_EncryptedPrivateKeyInfo_der_encoder_functions[]; 354 extern const OSSL_DISPATCH ossl_rsapss_to_EncryptedPrivateKeyInfo_pem_encoder_functions[]; 355 extern const OSSL_DISPATCH ossl_rsapss_to_PrivateKeyInfo_der_encoder_functions[]; 356 extern const OSSL_DISPATCH ossl_rsapss_to_PrivateKeyInfo_pem_encoder_functions[]; 357 extern const OSSL_DISPATCH ossl_rsapss_to_SubjectPublicKeyInfo_der_encoder_functions[]; 358 extern const OSSL_DISPATCH ossl_rsapss_to_SubjectPublicKeyInfo_pem_encoder_functions[]; 359 extern const OSSL_DISPATCH ossl_rsapss_to_text_encoder_functions[]; 360 361 extern const OSSL_DISPATCH ossl_dh_to_DH_der_encoder_functions[]; 362 extern const OSSL_DISPATCH ossl_dh_to_DH_pem_encoder_functions[]; 363 extern const OSSL_DISPATCH ossl_dh_to_PKCS3_der_encoder_functions[]; 364 extern const OSSL_DISPATCH ossl_dh_to_PKCS3_pem_encoder_functions[]; 365 extern const OSSL_DISPATCH ossl_dh_to_EncryptedPrivateKeyInfo_der_encoder_functions[]; 366 extern const OSSL_DISPATCH ossl_dh_to_EncryptedPrivateKeyInfo_pem_encoder_functions[]; 367 extern const OSSL_DISPATCH ossl_dh_to_PrivateKeyInfo_der_encoder_functions[]; 368 extern const OSSL_DISPATCH ossl_dh_to_PrivateKeyInfo_pem_encoder_functions[]; 369 extern const OSSL_DISPATCH ossl_dh_to_SubjectPublicKeyInfo_der_encoder_functions[]; 370 extern const OSSL_DISPATCH ossl_dh_to_SubjectPublicKeyInfo_pem_encoder_functions[]; 371 extern const OSSL_DISPATCH ossl_dh_to_type_specific_params_der_encoder_functions[]; 372 extern const OSSL_DISPATCH ossl_dh_to_type_specific_params_pem_encoder_functions[]; 373 extern const OSSL_DISPATCH ossl_dh_to_text_encoder_functions[]; 374 375 extern const OSSL_DISPATCH ossl_dhx_to_DHX_der_encoder_functions[]; 376 extern const OSSL_DISPATCH ossl_dhx_to_DHX_pem_encoder_functions[]; 377 extern const OSSL_DISPATCH ossl_dhx_to_EncryptedPrivateKeyInfo_der_encoder_functions[]; 378 extern const OSSL_DISPATCH ossl_dhx_to_EncryptedPrivateKeyInfo_pem_encoder_functions[]; 379 extern const OSSL_DISPATCH ossl_dhx_to_PrivateKeyInfo_der_encoder_functions[]; 380 extern const OSSL_DISPATCH ossl_dhx_to_PrivateKeyInfo_pem_encoder_functions[]; 381 extern const OSSL_DISPATCH ossl_dhx_to_SubjectPublicKeyInfo_der_encoder_functions[]; 382 extern const OSSL_DISPATCH ossl_dhx_to_SubjectPublicKeyInfo_pem_encoder_functions[]; 383 extern const OSSL_DISPATCH ossl_dhx_to_X9_42_der_encoder_functions[]; 384 extern const OSSL_DISPATCH ossl_dhx_to_X9_42_pem_encoder_functions[]; 385 extern const OSSL_DISPATCH ossl_dhx_to_type_specific_params_der_encoder_functions[]; 386 extern const OSSL_DISPATCH ossl_dhx_to_type_specific_params_pem_encoder_functions[]; 387 extern const OSSL_DISPATCH ossl_dhx_to_text_encoder_functions[]; 388 389 extern const OSSL_DISPATCH ossl_dsa_to_DSA_der_encoder_functions[]; 390 extern const OSSL_DISPATCH ossl_dsa_to_DSA_pem_encoder_functions[]; 391 extern const OSSL_DISPATCH ossl_dsa_to_EncryptedPrivateKeyInfo_der_encoder_functions[]; 392 extern const OSSL_DISPATCH ossl_dsa_to_EncryptedPrivateKeyInfo_pem_encoder_functions[]; 393 extern const OSSL_DISPATCH ossl_dsa_to_PrivateKeyInfo_der_encoder_functions[]; 394 extern const OSSL_DISPATCH ossl_dsa_to_PrivateKeyInfo_pem_encoder_functions[]; 395 extern const OSSL_DISPATCH ossl_dsa_to_SubjectPublicKeyInfo_der_encoder_functions[]; 396 extern const OSSL_DISPATCH ossl_dsa_to_SubjectPublicKeyInfo_pem_encoder_functions[]; 397 extern const OSSL_DISPATCH ossl_dsa_to_type_specific_pem_encoder_functions[]; 398 extern const OSSL_DISPATCH ossl_dsa_to_type_specific_der_encoder_functions[]; 399 extern const OSSL_DISPATCH ossl_dsa_to_msblob_encoder_functions[]; 400 extern const OSSL_DISPATCH ossl_dsa_to_pvk_encoder_functions[]; 401 extern const OSSL_DISPATCH ossl_dsa_to_text_encoder_functions[]; 402 403 extern const OSSL_DISPATCH ossl_ec_to_EC_der_encoder_functions[]; 404 extern const OSSL_DISPATCH ossl_ec_to_EC_pem_encoder_functions[]; 405 extern const OSSL_DISPATCH ossl_ec_to_blob_encoder_functions[]; 406 extern const OSSL_DISPATCH ossl_ec_to_EncryptedPrivateKeyInfo_der_encoder_functions[]; 407 extern const OSSL_DISPATCH ossl_ec_to_EncryptedPrivateKeyInfo_pem_encoder_functions[]; 408 extern const OSSL_DISPATCH ossl_ec_to_PrivateKeyInfo_der_encoder_functions[]; 409 extern const OSSL_DISPATCH ossl_ec_to_PrivateKeyInfo_pem_encoder_functions[]; 410 extern const OSSL_DISPATCH ossl_ec_to_SubjectPublicKeyInfo_der_encoder_functions[]; 411 extern const OSSL_DISPATCH ossl_ec_to_SubjectPublicKeyInfo_pem_encoder_functions[]; 412 extern const OSSL_DISPATCH ossl_ec_to_X9_62_der_encoder_functions[]; 413 extern const OSSL_DISPATCH ossl_ec_to_X9_62_pem_encoder_functions[]; 414 extern const OSSL_DISPATCH ossl_ec_to_type_specific_no_pub_pem_encoder_functions[]; 415 extern const OSSL_DISPATCH ossl_ec_to_type_specific_no_pub_der_encoder_functions[]; 416 extern const OSSL_DISPATCH ossl_ec_to_text_encoder_functions[]; 417 418 #ifndef OPENSSL_NO_SM2 419 extern const OSSL_DISPATCH ossl_sm2_to_SM2_der_encoder_functions[]; 420 extern const OSSL_DISPATCH ossl_sm2_to_SM2_pem_encoder_functions[]; 421 extern const OSSL_DISPATCH ossl_sm2_to_blob_encoder_functions[]; 422 extern const OSSL_DISPATCH ossl_sm2_to_EncryptedPrivateKeyInfo_der_encoder_functions[]; 423 extern const OSSL_DISPATCH ossl_sm2_to_EncryptedPrivateKeyInfo_pem_encoder_functions[]; 424 extern const OSSL_DISPATCH ossl_sm2_to_PrivateKeyInfo_der_encoder_functions[]; 425 extern const OSSL_DISPATCH ossl_sm2_to_PrivateKeyInfo_pem_encoder_functions[]; 426 extern const OSSL_DISPATCH ossl_sm2_to_SubjectPublicKeyInfo_der_encoder_functions[]; 427 extern const OSSL_DISPATCH ossl_sm2_to_SubjectPublicKeyInfo_pem_encoder_functions[]; 428 extern const OSSL_DISPATCH ossl_sm2_to_type_specific_no_pub_pem_encoder_functions[]; 429 extern const OSSL_DISPATCH ossl_sm2_to_type_specific_no_pub_der_encoder_functions[]; 430 extern const OSSL_DISPATCH ossl_sm2_to_text_encoder_functions[]; 431 #endif 432 433 extern const OSSL_DISPATCH ossl_ed25519_to_EncryptedPrivateKeyInfo_der_encoder_functions[]; 434 extern const OSSL_DISPATCH ossl_ed25519_to_EncryptedPrivateKeyInfo_pem_encoder_functions[]; 435 extern const OSSL_DISPATCH ossl_ed25519_to_PrivateKeyInfo_der_encoder_functions[]; 436 extern const OSSL_DISPATCH ossl_ed25519_to_PrivateKeyInfo_pem_encoder_functions[]; 437 extern const OSSL_DISPATCH ossl_ed25519_to_SubjectPublicKeyInfo_der_encoder_functions[]; 438 extern const OSSL_DISPATCH ossl_ed25519_to_SubjectPublicKeyInfo_pem_encoder_functions[]; 439 extern const OSSL_DISPATCH ossl_ed25519_to_OSSL_current_der_encoder_functions[]; 440 extern const OSSL_DISPATCH ossl_ed25519_to_text_encoder_functions[]; 441 442 extern const OSSL_DISPATCH ossl_ed448_to_EncryptedPrivateKeyInfo_der_encoder_functions[]; 443 extern const OSSL_DISPATCH ossl_ed448_to_EncryptedPrivateKeyInfo_pem_encoder_functions[]; 444 extern const OSSL_DISPATCH ossl_ed448_to_PrivateKeyInfo_der_encoder_functions[]; 445 extern const OSSL_DISPATCH ossl_ed448_to_PrivateKeyInfo_pem_encoder_functions[]; 446 extern const OSSL_DISPATCH ossl_ed448_to_SubjectPublicKeyInfo_der_encoder_functions[]; 447 extern const OSSL_DISPATCH ossl_ed448_to_SubjectPublicKeyInfo_pem_encoder_functions[]; 448 extern const OSSL_DISPATCH ossl_ed448_to_OSSL_current_der_encoder_functions[]; 449 extern const OSSL_DISPATCH ossl_ed448_to_text_encoder_functions[]; 450 451 extern const OSSL_DISPATCH ossl_x25519_to_EncryptedPrivateKeyInfo_der_encoder_functions[]; 452 extern const OSSL_DISPATCH ossl_x25519_to_EncryptedPrivateKeyInfo_pem_encoder_functions[]; 453 extern const OSSL_DISPATCH ossl_x25519_to_PrivateKeyInfo_der_encoder_functions[]; 454 extern const OSSL_DISPATCH ossl_x25519_to_PrivateKeyInfo_pem_encoder_functions[]; 455 extern const OSSL_DISPATCH ossl_x25519_to_SubjectPublicKeyInfo_der_encoder_functions[]; 456 extern const OSSL_DISPATCH ossl_x25519_to_SubjectPublicKeyInfo_pem_encoder_functions[]; 457 extern const OSSL_DISPATCH ossl_x25519_to_OSSL_current_der_encoder_functions[]; 458 extern const OSSL_DISPATCH ossl_x25519_to_text_encoder_functions[]; 459 460 extern const OSSL_DISPATCH ossl_x448_to_EncryptedPrivateKeyInfo_der_encoder_functions[]; 461 extern const OSSL_DISPATCH ossl_x448_to_EncryptedPrivateKeyInfo_pem_encoder_functions[]; 462 extern const OSSL_DISPATCH ossl_x448_to_PrivateKeyInfo_der_encoder_functions[]; 463 extern const OSSL_DISPATCH ossl_x448_to_PrivateKeyInfo_pem_encoder_functions[]; 464 extern const OSSL_DISPATCH ossl_x448_to_SubjectPublicKeyInfo_der_encoder_functions[]; 465 extern const OSSL_DISPATCH ossl_x448_to_SubjectPublicKeyInfo_pem_encoder_functions[]; 466 extern const OSSL_DISPATCH ossl_x448_to_OSSL_current_der_encoder_functions[]; 467 extern const OSSL_DISPATCH ossl_x448_to_text_encoder_functions[]; 468 469 /* Decoders */ 470 extern const OSSL_DISPATCH ossl_PrivateKeyInfo_der_to_dh_decoder_functions[]; 471 extern const OSSL_DISPATCH ossl_SubjectPublicKeyInfo_der_to_dh_decoder_functions[]; 472 extern const OSSL_DISPATCH ossl_type_specific_params_der_to_dh_decoder_functions[]; 473 extern const OSSL_DISPATCH ossl_DH_der_to_dh_decoder_functions[]; 474 475 extern const OSSL_DISPATCH ossl_PrivateKeyInfo_der_to_dhx_decoder_functions[]; 476 extern const OSSL_DISPATCH ossl_SubjectPublicKeyInfo_der_to_dhx_decoder_functions[]; 477 extern const OSSL_DISPATCH ossl_type_specific_params_der_to_dhx_decoder_functions[]; 478 extern const OSSL_DISPATCH ossl_DHX_der_to_dhx_decoder_functions[]; 479 480 extern const OSSL_DISPATCH ossl_PrivateKeyInfo_der_to_dsa_decoder_functions[]; 481 extern const OSSL_DISPATCH ossl_SubjectPublicKeyInfo_der_to_dsa_decoder_functions[]; 482 extern const OSSL_DISPATCH ossl_type_specific_der_to_dsa_decoder_functions[]; 483 extern const OSSL_DISPATCH ossl_DSA_der_to_dsa_decoder_functions[]; 484 extern const OSSL_DISPATCH ossl_msblob_to_dsa_decoder_functions[]; 485 extern const OSSL_DISPATCH ossl_pvk_to_dsa_decoder_functions[]; 486 487 extern const OSSL_DISPATCH ossl_PrivateKeyInfo_der_to_ec_decoder_functions[]; 488 extern const OSSL_DISPATCH ossl_SubjectPublicKeyInfo_der_to_ec_decoder_functions[]; 489 extern const OSSL_DISPATCH ossl_type_specific_no_pub_der_to_ec_decoder_functions[]; 490 extern const OSSL_DISPATCH ossl_EC_der_to_ec_decoder_functions[]; 491 492 extern const OSSL_DISPATCH ossl_PrivateKeyInfo_der_to_x25519_decoder_functions[]; 493 extern const OSSL_DISPATCH ossl_SubjectPublicKeyInfo_der_to_x25519_decoder_functions[]; 494 495 extern const OSSL_DISPATCH ossl_PrivateKeyInfo_der_to_x448_decoder_functions[]; 496 extern const OSSL_DISPATCH ossl_SubjectPublicKeyInfo_der_to_x448_decoder_functions[]; 497 498 extern const OSSL_DISPATCH ossl_PrivateKeyInfo_der_to_ed25519_decoder_functions[]; 499 extern const OSSL_DISPATCH ossl_SubjectPublicKeyInfo_der_to_ed25519_decoder_functions[]; 500 501 extern const OSSL_DISPATCH ossl_PrivateKeyInfo_der_to_ed448_decoder_functions[]; 502 extern const OSSL_DISPATCH ossl_SubjectPublicKeyInfo_der_to_ed448_decoder_functions[]; 503 504 #ifndef OPENSSL_NO_SM2 505 extern const OSSL_DISPATCH ossl_PrivateKeyInfo_der_to_sm2_decoder_functions[]; 506 extern const OSSL_DISPATCH ossl_SubjectPublicKeyInfo_der_to_sm2_decoder_functions[]; 507 #endif 508 509 extern const OSSL_DISPATCH ossl_PrivateKeyInfo_der_to_rsa_decoder_functions[]; 510 extern const OSSL_DISPATCH ossl_SubjectPublicKeyInfo_der_to_rsa_decoder_functions[]; 511 extern const OSSL_DISPATCH ossl_type_specific_keypair_der_to_rsa_decoder_functions[]; 512 extern const OSSL_DISPATCH ossl_RSA_der_to_rsa_decoder_functions[]; 513 extern const OSSL_DISPATCH ossl_msblob_to_rsa_decoder_functions[]; 514 extern const OSSL_DISPATCH ossl_pvk_to_rsa_decoder_functions[]; 515 516 extern const OSSL_DISPATCH ossl_PrivateKeyInfo_der_to_rsapss_decoder_functions[]; 517 extern const OSSL_DISPATCH ossl_SubjectPublicKeyInfo_der_to_rsapss_decoder_functions[]; 518 519 extern const OSSL_DISPATCH ossl_EncryptedPrivateKeyInfo_der_to_der_decoder_functions[]; 520 extern const OSSL_DISPATCH ossl_SubjectPublicKeyInfo_der_to_der_decoder_functions[]; 521 extern const OSSL_DISPATCH ossl_pem_to_der_decoder_functions[]; 522 523 extern const OSSL_DISPATCH ossl_file_store_functions[]; 524