[openssl-commits] [openssl] master update
Matt Caswell
matt at openssl.org
Wed Jun 20 13:33:48 UTC 2018
The branch master has been updated
via c86acc9f83f0c5c931519e861ba2ef37069f1ff4 (commit)
from f73164ca1e3d221a580b3ea6298432c180075f26 (commit)
- Log -----------------------------------------------------------------
commit c86acc9f83f0c5c931519e861ba2ef37069f1ff4
Author: Matt Caswell <matt at openssl.org>
Date: Tue Jun 19 21:36:42 2018 +0100
Fix no-sm2
Fixes #6525
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6531)
-----------------------------------------------------------------------
Summary of changes:
test/evp_test.c | 29 +++++++----------------------
1 file changed, 7 insertions(+), 22 deletions(-)
diff --git a/test/evp_test.c b/test/evp_test.c
index 97239f2..667c945 100644
--- a/test/evp_test.c
+++ b/test/evp_test.c
@@ -2413,23 +2413,6 @@ static char *take_value(PAIR *pp)
return p;
}
-static int key_disabled(EVP_PKEY *pkey)
-{
-#if defined(OPENSSL_NO_SM2) && !defined(OPENSSL_NO_EC)
- int type = EVP_PKEY_base_id(pkey);
-
- if (type == EVP_PKEY_EC) {
- EC_KEY *ec = EVP_PKEY_get0_EC_KEY(pkey);
- int nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec));
-
- if (nid == NID_sm2)
- return 1;
- }
-#endif /* OPENSSL_NO_SM2 */
-
- return 0;
-}
-
/*
* Read and parse one test. Return 0 if failure, 1 if okay.
*/
@@ -2516,10 +2499,6 @@ top:
}
OPENSSL_free(keybin);
}
- if (pkey != NULL && key_disabled(pkey)) {
- EVP_PKEY_free(pkey);
- pkey = NULL;
- }
/* If we have a key add to list */
if (klist != NULL) {
@@ -2532,8 +2511,14 @@ top:
key->name = take_value(pp);
/* Hack to detect SM2 keys */
- if(strstr(key->name, "SM2"))
+ if(pkey != NULL && strstr(key->name, "SM2") != NULL) {
+#ifdef OPENSSL_NO_SM2
+ EVP_PKEY_free(pkey);
+ pkey = NULL;
+#else
EVP_PKEY_set_alias_type(pkey, EVP_PKEY_SM2);
+#endif
+ }
key->key = pkey;
key->next = *klist;
More information about the openssl-commits
mailing list