From: Shane Lontis Date: Sat, 22 May 2021 02:39:39 +0000 (+1000) Subject: Fix incorrect OSSL_CIPHER_PARAM_SPEED get_ctx_params X-Git-Tag: openssl-3.0.0-beta1~328 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37115f65122d028be85fe0e3d1f33af4a4b9dd39;p=thirdparty%2Fopenssl.git Fix incorrect OSSL_CIPHER_PARAM_SPEED get_ctx_params Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/15416) --- diff --git a/providers/implementations/ciphers/cipher_aes_siv.c b/providers/implementations/ciphers/cipher_aes_siv.c index dd3346a81ce..45010b90db2 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 };