Skip to content

Commit

Permalink
evp_fetch.c: Avoid using algorithm that is not in 3.0
Browse files Browse the repository at this point in the history
Reviewed-by: Neil Horman <[email protected]>
Reviewed-by: Sasa Nedvedicky <[email protected]>
Reviewed-by: Richard Levitte <[email protected]>
(Merged from #200)
  • Loading branch information
t8m committed Jun 17, 2024
1 parent 5deec50 commit 54ed7d1
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions perf/evp_fetch.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,10 @@ static struct fetch_data_entry fetch_entries[] = {
{FETCH_MD, OSSL_DIGEST_NAME_SHA2_256, NULL},
{FETCH_MD, OSSL_DIGEST_NAME_SHA3_224, NULL},
{FETCH_MD, OSSL_DIGEST_NAME_SHA3_256, NULL},
#ifndef OPENSSL_NO_SIV
{FETCH_CIPHER, OSSL_CIPHER_NAME_AES_128_GCM_SIV, NULL},
{FETCH_CIPHER, OSSL_CIPHER_NAME_AES_192_GCM_SIV, NULL},
{FETCH_CIPHER, OSSL_CIPHER_NAME_AES_256_GCM_SIV, NULL},
#endif
{FETCH_CIPHER, "AES-128-GCM", NULL},
{FETCH_CIPHER, "AES-128-CBC", NULL},
{FETCH_CIPHER, "AES-256-GCM", NULL},
{FETCH_CIPHER, "AES-256-CBC", NULL},
{FETCH_KDF, OSSL_KDF_NAME_HKDF, NULL},
#ifndef OPENSSL_NO_SCRYPT
{FETCH_KDF, OSSL_KDF_NAME_SCRYPT, NULL},
Expand Down

0 comments on commit 54ed7d1

Please sign in to comment.