summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2024-01-15 15:09:57 +0000
committertb <>2024-01-15 15:09:57 +0000
commit2e512464afc7ae85e37665bb45cbd5e799fec97d (patch)
tree83846d7368559b662381ce70066cb1f2f92c86d2 /src
parent513a71d00011aa1ae4311c1d0b54b6eca1ba4851 (diff)
downloadopenbsd-2e512464afc7ae85e37665bb45cbd5e799fec97d.tar.gz
openbsd-2e512464afc7ae85e37665bb45cbd5e799fec97d.tar.bz2
openbsd-2e512464afc7ae85e37665bb45cbd5e799fec97d.zip
Run the pkey cleanup test also for {Ed,X}25519
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/evp/evp_pkey_cleanup.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/evp/evp_pkey_cleanup.c b/src/regress/lib/libcrypto/evp/evp_pkey_cleanup.c
index fd922efb09..055a70d27b 100644
--- a/src/regress/lib/libcrypto/evp/evp_pkey_cleanup.c
+++ b/src/regress/lib/libcrypto/evp/evp_pkey_cleanup.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: evp_pkey_cleanup.c,v 1.3 2022/12/01 13:49:12 tb Exp $ */ 1/* $OpenBSD: evp_pkey_cleanup.c,v 1.4 2024/01/15 15:09:57 tb Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2022 Theo Buehler <tb@openbsd.org> 4 * Copyright (c) 2022 Theo Buehler <tb@openbsd.org>
@@ -33,11 +33,13 @@ int pkey_ids[] = {
33 EVP_PKEY_DH, 33 EVP_PKEY_DH,
34 EVP_PKEY_DSA, 34 EVP_PKEY_DSA,
35 EVP_PKEY_EC, 35 EVP_PKEY_EC,
36 EVP_PKEY_ED25519,
36 EVP_PKEY_GOSTIMIT, 37 EVP_PKEY_GOSTIMIT,
37 EVP_PKEY_GOSTR01, 38 EVP_PKEY_GOSTR01,
38 EVP_PKEY_HMAC, 39 EVP_PKEY_HMAC,
39 EVP_PKEY_RSA, 40 EVP_PKEY_RSA,
40 EVP_PKEY_RSA_PSS, 41 EVP_PKEY_RSA_PSS,
42 EVP_PKEY_X25519,
41}; 43};
42 44
43static const size_t N_PKEY_IDS = sizeof(pkey_ids) / sizeof(pkey_ids[0]); 45static const size_t N_PKEY_IDS = sizeof(pkey_ids) / sizeof(pkey_ids[0]);