summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2020-02-20 16:16:21 +1000
committerShane Lontis <shane.lontis@oracle.com>2020-03-12 07:36:04 +1000
commit1c725f463edf0a5b33a2a93e9a43a9ab682af7db (patch)
tree3072468d1ed7f159768cebc152a7dcb1bda870b8 /test
parenta173cc9c388cbe8105f78ba5a8fdfbf20a35be1a (diff)
Add ECDH to fips provider
Note: This PR has not attempted to move the curves into the provider dispatch table. Mappings between the curve name / nid have been added to the inbuilt curve table. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11133)
Diffstat (limited to 'test')
-rw-r--r--test/recipes/30-test_evp.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/recipes/30-test_evp.t b/test/recipes/30-test_evp.t
index 9b940aa5ec..7263f29290 100644
--- a/test/recipes/30-test_evp.t
+++ b/test/recipes/30-test_evp.t
@@ -31,9 +31,9 @@ my @configs = ( $defaultcnf );
# Only add the FIPS config if the FIPS module has been built
push @configs, 'fips.cnf' unless $no_fips;
-my @files = qw( evpciph.txt evpdigest.txt evppkey.txt);
+my @files = qw( evpciph.txt evpdigest.txt evppkey.txt evppkey_ecc.txt);
my @defltfiles = qw( evpencod.txt evpkdf.txt evppkey_kdf.txt evpmac.txt
- evppbe.txt evppkey_ecc.txt evpcase.txt evpccmcavs.txt );
+ evppbe.txt evpcase.txt evpccmcavs.txt );
my @ideafiles = qw( evpciph_idea.txt );
push @defltfiles, @ideafiles unless disabled("idea");