X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=providers%2Fimplementations%2Finclude%2Fprov%2Fimplementations.h;h=e3afa987d6b0f86fe6e98dbb573f60801f70a126;hp=ed44d68a5a276aa01d166e0865a326558f8867f5;hb=af6d8dd30ff48046f5af7d84095f30356c33264a;hpb=0d2bfe52bb7e839f7bddcdb1160c335f2994df2f diff --git a/providers/implementations/include/prov/implementations.h b/providers/implementations/include/prov/implementations.h index ed44d68a5a..e3afa987d6 100644 --- a/providers/implementations/include/prov/implementations.h +++ b/providers/implementations/include/prov/implementations.h @@ -1,5 +1,5 @@ /* - * Copyright 2019 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved. * * 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 @@ -35,6 +35,7 @@ extern const OSSL_DISPATCH wp_functions[]; extern const OSSL_DISPATCH ripemd160_functions[]; /* Ciphers */ +extern const OSSL_DISPATCH null_functions[]; extern const OSSL_DISPATCH aes256ecb_functions[]; extern const OSSL_DISPATCH aes192ecb_functions[]; extern const OSSL_DISPATCH aes128ecb_functions[]; @@ -256,12 +257,21 @@ extern const OSSL_DISPATCH kdf_krb5kdf_functions[]; extern const OSSL_DISPATCH dh_keymgmt_functions[]; extern const OSSL_DISPATCH dsa_keymgmt_functions[]; extern const OSSL_DISPATCH rsa_keymgmt_functions[]; +extern const OSSL_DISPATCH x25519_keymgmt_functions[]; +extern const OSSL_DISPATCH x448_keymgmt_functions[]; +extern const OSSL_DISPATCH ed25519_keymgmt_functions[]; +extern const OSSL_DISPATCH ed448_keymgmt_functions[]; +extern const OSSL_DISPATCH ec_keymgmt_functions[]; /* Key Exchange */ extern const OSSL_DISPATCH dh_keyexch_functions[]; +extern const OSSL_DISPATCH x25519_keyexch_functions[]; +extern const OSSL_DISPATCH x448_keyexch_functions[]; +extern const OSSL_DISPATCH ecdh_keyexch_functions[]; /* Signature */ extern const OSSL_DISPATCH dsa_signature_functions[]; +extern const OSSL_DISPATCH rsa_signature_functions[]; /* Asym Cipher */ extern const OSSL_DISPATCH rsa_asym_cipher_functions[]; @@ -273,6 +283,7 @@ extern const OSSL_DISPATCH rsa_priv_der_serializer_functions[]; extern const OSSL_DISPATCH rsa_pub_der_serializer_functions[]; extern const OSSL_DISPATCH rsa_priv_pem_serializer_functions[]; extern const OSSL_DISPATCH rsa_pub_pem_serializer_functions[]; + extern const OSSL_DISPATCH dh_priv_text_serializer_functions[]; extern const OSSL_DISPATCH dh_pub_text_serializer_functions[]; extern const OSSL_DISPATCH dh_param_text_serializer_functions[]; @@ -282,6 +293,7 @@ extern const OSSL_DISPATCH dh_param_der_serializer_functions[]; extern const OSSL_DISPATCH dh_priv_pem_serializer_functions[]; extern const OSSL_DISPATCH dh_pub_pem_serializer_functions[]; extern const OSSL_DISPATCH dh_param_pem_serializer_functions[]; + extern const OSSL_DISPATCH dsa_priv_text_serializer_functions[]; extern const OSSL_DISPATCH dsa_pub_text_serializer_functions[]; extern const OSSL_DISPATCH dsa_param_text_serializer_functions[]; @@ -291,3 +303,27 @@ extern const OSSL_DISPATCH dsa_param_der_serializer_functions[]; extern const OSSL_DISPATCH dsa_priv_pem_serializer_functions[]; extern const OSSL_DISPATCH dsa_pub_pem_serializer_functions[]; extern const OSSL_DISPATCH dsa_param_pem_serializer_functions[]; + +extern const OSSL_DISPATCH x25519_priv_print_serializer_functions[]; +extern const OSSL_DISPATCH x25519_pub_print_serializer_functions[]; +extern const OSSL_DISPATCH x25519_priv_der_serializer_functions[]; +extern const OSSL_DISPATCH x25519_pub_der_serializer_functions[]; +extern const OSSL_DISPATCH x25519_priv_pem_serializer_functions[]; +extern const OSSL_DISPATCH x25519_pub_pem_serializer_functions[]; + +extern const OSSL_DISPATCH x448_priv_print_serializer_functions[]; +extern const OSSL_DISPATCH x448_pub_print_serializer_functions[]; +extern const OSSL_DISPATCH x448_priv_der_serializer_functions[]; +extern const OSSL_DISPATCH x448_pub_der_serializer_functions[]; +extern const OSSL_DISPATCH x448_priv_pem_serializer_functions[]; +extern const OSSL_DISPATCH x448_pub_pem_serializer_functions[]; + +extern const OSSL_DISPATCH ec_priv_text_serializer_functions[]; +extern const OSSL_DISPATCH ec_pub_text_serializer_functions[]; +extern const OSSL_DISPATCH ec_param_text_serializer_functions[]; +extern const OSSL_DISPATCH ec_priv_der_serializer_functions[]; +extern const OSSL_DISPATCH ec_pub_der_serializer_functions[]; +extern const OSSL_DISPATCH ec_param_der_serializer_functions[]; +extern const OSSL_DISPATCH ec_priv_pem_serializer_functions[]; +extern const OSSL_DISPATCH ec_pub_pem_serializer_functions[]; +extern const OSSL_DISPATCH ec_param_pem_serializer_functions[];