summaryrefslogtreecommitdiff
path: root/test/recipes/30-test_evp_pkey_provided.t
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2020-02-28 08:08:59 +1000
committerShane Lontis <shane.lontis@oracle.com>2020-02-28 08:08:59 +1000
commit8efc4a9c656b8b3eabeac64c54efdeb07dd42f8e (patch)
treeb0bc5aac800d9bb912afb2dae10dd3f3bf503a08 /test/recipes/30-test_evp_pkey_provided.t
parent30a4cda5e0c67b4e77da4f21b7c5f27991d3367a (diff)
downloadopenssl-new-8efc4a9c656b8b3eabeac64c54efdeb07dd42f8e.tar.gz
Implement the ECX Serializers
Provide serializers for X25519 and X448 for text, pem and der. There are no parameter serializers because there are no parameters for these algorithms. Add some documentation about the various import/export types available Add additional testing for the serializers Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11095)
Diffstat (limited to 'test/recipes/30-test_evp_pkey_provided.t')
-rw-r--r--test/recipes/30-test_evp_pkey_provided.t9
1 files changed, 8 insertions, 1 deletions
diff --git a/test/recipes/30-test_evp_pkey_provided.t b/test/recipes/30-test_evp_pkey_provided.t
index 669438caed..74b366451d 100644
--- a/test/recipes/30-test_evp_pkey_provided.t
+++ b/test/recipes/30-test_evp_pkey_provided.t
@@ -9,5 +9,12 @@
use OpenSSL::Test::Simple;
+use OpenSSL::Test qw/:DEFAULT srctop_dir/;
-simple_test("test_evp_pkey_provided", "evp_pkey_provided_test");
+setup("test_evp_pkey_provided");
+
+plan tests => 1;
+
+ok(run(test(["evp_pkey_provided_test",
+ srctop_dir("test", "recipes", "30-test_evp_pkey_provided")])),
+ "running evp_pkey_provided_test");