From 96ebe52e897dea29664683e138877fb5eb995e4d Mon Sep 17 00:00:00 2001 From: Shane Lontis Date: Wed, 1 Apr 2020 15:51:18 +1000 Subject: Add EVP_PKEY_gettable_params support for accessing EVP_PKEY key data fields Currently only RSA, EC and ECX are supported (DH and DSA need to be added to the keygen PR's seperately because the fields supported have changed significantly). The API's require the keys to be provider based. Made the keymanagement export and get_params functions share the same code by supplying support functions that work for both a OSSL_PARAM_BLD as well as a OSSL_PARAM[]. This approach means that complex code is not required to build an empty OSSL_PARAM[] with the correct sized fields before then doing a second pass to populate the array. The RSA factor arrays have been changed to use unique key names to simplify the interface needed by the user. Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/11365) --- crypto/build.info | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crypto/build.info') diff --git a/crypto/build.info b/crypto/build.info index a688248acf..baa31ee8e1 100644 --- a/crypto/build.info +++ b/crypto/build.info @@ -70,7 +70,8 @@ SOURCE[../providers/libfips.a]=$CORE_COMMON $UTIL_COMMON=\ cryptlib.c params.c params_from_text.c bsearch.c ex_data.c o_str.c \ ctype.c threads_pthread.c threads_win.c threads_none.c initthread.c \ - context.c sparse_array.c asn1_dsa.c packet.c param_build.c $CPUIDASM + context.c sparse_array.c asn1_dsa.c packet.c param_build.c $CPUIDASM \ + param_build_set.c $UTIL_DEFINE=$CPUIDDEF SOURCE[../libcrypto]=$UTIL_COMMON \ -- cgit v1.2.3