diff options
author | Matt Caswell <matt@openssl.org> | 2018-03-19 11:22:46 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2018-03-19 13:34:29 +0100 |
commit | 66a925ea8c91d883bd0603bcee5705025b564bd6 (patch) | |
tree | 0341d0b0a214d0e5adf788bcf7cde76074cce435 /test | |
parent | Add a CHANGES entry to mention the replay protection capabilities (diff) | |
download | openssl-66a925ea8c91d883bd0603bcee5705025b564bd6.tar.xz openssl-66a925ea8c91d883bd0603bcee5705025b564bd6.zip |
Fix no-ec
Raw private/public key loading may fail for X25519/X448 if ec has been
disabled.
Also fixed a missing blank line in evppkey.txt resulting in a warning in
the test output.
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5664)
Diffstat (limited to 'test')
-rw-r--r-- | test/evp_test.c | 2 | ||||
-rw-r--r-- | test/recipes/30-test_evp_data/evppkey.txt | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/test/evp_test.c b/test/evp_test.c index 3e237b014b..3244da6549 100644 --- a/test/evp_test.c +++ b/test/evp_test.c @@ -2489,7 +2489,7 @@ top: pkey = EVP_PKEY_new_raw_private_key(nid, NULL, keybin, keylen); else pkey = EVP_PKEY_new_raw_public_key(nid, NULL, keybin, keylen); - if (pkey == NULL) { + if (pkey == NULL && !key_unsupported()) { TEST_info("Can't read %s data", pp->key); OPENSSL_free(keybin); TEST_openssl_errors(); diff --git a/test/recipes/30-test_evp_data/evppkey.txt b/test/recipes/30-test_evp_data/evppkey.txt index fa395af518..cc08398e5b 100644 --- a/test/recipes/30-test_evp_data/evppkey.txt +++ b/test/recipes/30-test_evp_data/evppkey.txt @@ -737,6 +737,7 @@ PrivPubKeyPair = Alice-25519-Raw:Alice-25519-PUBLIC-Raw PrivateKeyRaw=Bob-25519-Raw:X25519:5dab087e624a8a4b79e17f8b83800ee66f3bb1292618b6fd1c2f8b27ff88e0eb PublicKeyRaw=Bob-25519-PUBLIC-Raw:X25519:de9edb7d7b7dc1b4d35b61c2ece435373f8343c85b78674dadfc7e146f882b4f + PrivPubKeyPair = Bob-25519:Bob-25519-PUBLIC PrivPubKeyPair = Bob-25519-Raw:Bob-25519-PUBLIC-Raw |