diff options
author | Richard Levitte <levitte@openssl.org> | 2019-03-21 08:44:06 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2019-04-03 11:42:48 +0200 |
commit | ac1055ef13ccb5789e2bed7b9688c8eb16dd05ce (patch) | |
tree | 732d10768e106db34e3d36b112c68500743080ad /crypto/cpt_err.c | |
parent | AES-XTS block limit. (diff) | |
download | openssl-ac1055ef13ccb5789e2bed7b9688c8eb16dd05ce.tar.xz openssl-ac1055ef13ccb5789e2bed7b9688c8eb16dd05ce.zip |
Replumbing: add functionality to set provider parameters
Provider parameters are parameters set by the core that the provider
can retrieve. The primary use it to support making OpenSSL
configuration data available to the provider.
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/8549)
Diffstat (limited to 'crypto/cpt_err.c')
-rw-r--r-- | crypto/cpt_err.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/cpt_err.c b/crypto/cpt_err.c index 3c3265dce5..cca8037855 100644 --- a/crypto/cpt_err.c +++ b/crypto/cpt_err.c @@ -50,8 +50,12 @@ static const ERR_STRING_DATA CRYPTO_str_functs[] = { "OSSL_PROVIDER_add_builtin"}, {ERR_PACK(ERR_LIB_CRYPTO, CRYPTO_F_OSSL_PROVIDER_ACTIVATE, 0), "ossl_provider_activate"}, + {ERR_PACK(ERR_LIB_CRYPTO, CRYPTO_F_OSSL_PROVIDER_ADD_PARAMETER, 0), + "ossl_provider_add_parameter"}, {ERR_PACK(ERR_LIB_CRYPTO, CRYPTO_F_OSSL_PROVIDER_NEW, 0), "ossl_provider_new"}, + {ERR_PACK(ERR_LIB_CRYPTO, CRYPTO_F_OSSL_PROVIDER_SET_MODULE_PATH, 0), + "ossl_provider_set_module_path"}, {ERR_PACK(ERR_LIB_CRYPTO, CRYPTO_F_PKEY_HMAC_INIT, 0), "pkey_hmac_init"}, {ERR_PACK(ERR_LIB_CRYPTO, CRYPTO_F_PKEY_POLY1305_INIT, 0), "pkey_poly1305_init"}, |