mirror of
https://github.com/openssl/openssl.git
synced 2025-01-18 13:44:20 +08:00
8efc4a9c65
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)
21 lines
690 B
Raku
21 lines
690 B
Raku
#! /usr/bin/env perl
|
|
# Copyright 2018 The OpenSSL Project Authors. All Rights Reserved.
|
|
# Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
# this file except in compliance with the License. You can obtain a copy
|
|
# in the file LICENSE in the source distribution or at
|
|
# https://www.openssl.org/source/license.html
|
|
|
|
|
|
use OpenSSL::Test::Simple;
|
|
use OpenSSL::Test qw/:DEFAULT srctop_dir/;
|
|
|
|
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");
|