Rename EVP_PKEY_get0_first_alg_name to EVP_PKEY_get0_type_name
We use type elsewhere and documenting the 'first' in the name of the call is a little bit superfluous making the name too mouthful. Also rename EVP_PKEY_typenames_do_all to EVP_PKEY_type_names_do_all to keep the words separated by underscore. Fixes #14701 Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14868)
This commit is contained in:
parent
9c1b19eb6f
commit
ddf0d149e2
9 changed files with 30 additions and 27 deletions
|
@ -316,7 +316,7 @@ OSSL_ENCODER_CTX *OSSL_ENCODER_CTX_new_for_pkey(const EVP_PKEY *pkey,
|
|||
OSSL_TRACE_BEGIN(ENCODER) {
|
||||
BIO_printf(trc_out,
|
||||
"(ctx %p) Looking for %s encoders with selection %d\n",
|
||||
(void *)ctx, EVP_PKEY_get0_first_alg_name(pkey), selection);
|
||||
(void *)ctx, EVP_PKEY_get0_type_name(pkey), selection);
|
||||
BIO_printf(trc_out, " output type: %s, output structure: %s\n",
|
||||
output_type, output_struct);
|
||||
} OSSL_TRACE_END(ENCODER);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue