Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define. Fixes #15236 Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_, EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_, EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_, EVP_MD_, and EVP_CIPHER_ prefixes are renamed. Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15405)
This commit is contained in:
parent
5e2d22d53e
commit
ed576acdf5
261 changed files with 1934 additions and 1799 deletions
|
@ -279,7 +279,7 @@ int OSSL_ENCODER_CTX_add_encoder(OSSL_ENCODER_CTX *ctx, OSSL_ENCODER *encoder)
|
|||
return 0;
|
||||
}
|
||||
|
||||
prov = OSSL_ENCODER_provider(encoder);
|
||||
prov = OSSL_ENCODER_get0_provider(encoder);
|
||||
provctx = OSSL_PROVIDER_get0_provider_ctx(prov);
|
||||
|
||||
if ((encoderctx = encoder->newctx(provctx)) == NULL
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue