diff options
author | Richard Levitte <levitte@openssl.org> | 2020-09-14 11:35:07 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2020-09-20 17:31:54 +0200 |
commit | 48b62fb33aa0c5bce52b939fcd94780736491a5d (patch) | |
tree | c9faa14517c8073ae72737d5f2f6d1a118d15079 /util/libcrypto.num | |
parent | TEST: Adapt applicable tests to the changed OSSL_ENCODER_CTX_new_by_EVP_PKEY() (diff) | |
download | openssl-48b62fb33aa0c5bce52b939fcd94780736491a5d.tar.xz openssl-48b62fb33aa0c5bce52b939fcd94780736491a5d.zip |
DECODER: Some cleanups, and aligning with OSSL_ENCODER
Mostly source nits, but also removing a couple of OSSL_DECODER_PARAM
macros that are never used or even make sense.
Also, some function names weren't quite consistent. They were made a
bit more consistent in the OSSL_ENCODER API, now we bring that back to
OSSL_DECODER.
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/12873)
Diffstat (limited to 'util/libcrypto.num')
-rw-r--r-- | util/libcrypto.num | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/util/libcrypto.num b/util/libcrypto.num index fd6fe59b53..e414a6443b 100644 --- a/util/libcrypto.num +++ b/util/libcrypto.num @@ -5154,11 +5154,11 @@ OSSL_DECODER_from_bio ? 3_0_0 EXIST::FUNCTION: OSSL_DECODER_from_fp ? 3_0_0 EXIST::FUNCTION:STDIO OSSL_DECODER_CTX_add_decoder ? 3_0_0 EXIST::FUNCTION: OSSL_DECODER_CTX_add_extra ? 3_0_0 EXIST::FUNCTION: -OSSL_DECODER_CTX_num_decoders ? 3_0_0 EXIST::FUNCTION: +OSSL_DECODER_CTX_get_num_decoders ? 3_0_0 EXIST::FUNCTION: OSSL_DECODER_CTX_set_input_type ? 3_0_0 EXIST::FUNCTION: OSSL_DECODER_export ? 3_0_0 EXIST::FUNCTION: -OSSL_DECODER_INSTANCE_decoder ? 3_0_0 EXIST::FUNCTION: -OSSL_DECODER_INSTANCE_decoder_ctx ? 3_0_0 EXIST::FUNCTION: +OSSL_DECODER_INSTANCE_get_decoder ? 3_0_0 EXIST::FUNCTION: +OSSL_DECODER_INSTANCE_get_decoder_ctx ? 3_0_0 EXIST::FUNCTION: ERR_load_OSSL_DECODER_strings ? 3_0_0 EXIST::FUNCTION: OSSL_DECODER_gettable_params ? 3_0_0 EXIST::FUNCTION: OSSL_DECODER_get_params ? 3_0_0 EXIST::FUNCTION: @@ -5312,3 +5312,4 @@ OSSL_ENCODER_CTX_set_cleanup ? 3_0_0 EXIST::FUNCTION: OSSL_DECODER_INSTANCE_get_input_type ? 3_0_0 EXIST::FUNCTION: OSSL_ENCODER_CTX_set_passphrase_cb ? 3_0_0 EXIST::FUNCTION: EVP_PKEY_typenames_do_all ? 3_0_0 EXIST::FUNCTION: +OSSL_DECODER_INSTANCE_get_input_type ? 3_0_0 EXIST::FUNCTION: |