diff options
author | Shane Lontis <shane.lontis@oracle.com> | 2021-05-22 04:39:39 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2021-05-28 14:29:13 +0200 |
commit | 37115f65122d028be85fe0e3d1f33af4a4b9dd39 (patch) | |
tree | 92bd246c8531e721f687a010d2cf9811d8112410 /providers | |
parent | Add missing EVP_CTRL_CCM_SET_L control (diff) | |
download | openssl-37115f65122d028be85fe0e3d1f33af4a4b9dd39.tar.xz openssl-37115f65122d028be85fe0e3d1f33af4a4b9dd39.zip |
Fix incorrect OSSL_CIPHER_PARAM_SPEED get_ctx_params
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15416)
Diffstat (limited to 'providers')
-rw-r--r-- | providers/implementations/ciphers/cipher_aes_siv.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/providers/implementations/ciphers/cipher_aes_siv.c b/providers/implementations/ciphers/cipher_aes_siv.c index dd3346a81c..45010b90db 100644 --- a/providers/implementations/ciphers/cipher_aes_siv.c +++ b/providers/implementations/ciphers/cipher_aes_siv.c @@ -185,7 +185,6 @@ static int aes_siv_get_ctx_params(void *vctx, OSSL_PARAM params[]) static const OSSL_PARAM aes_siv_known_gettable_ctx_params[] = { OSSL_PARAM_size_t(OSSL_CIPHER_PARAM_KEYLEN, NULL), OSSL_PARAM_size_t(OSSL_CIPHER_PARAM_AEAD_TAGLEN, NULL), - OSSL_PARAM_uint(OSSL_CIPHER_PARAM_SPEED, NULL), OSSL_PARAM_octet_string(OSSL_CIPHER_PARAM_AEAD_TAG, NULL, 0), OSSL_PARAM_END }; |