Add ECDH to fips provider
[openssl.git] / test / recipes / 30-test_evp.t
1 #! /usr/bin/env perl
2 # Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved.
3 #
4 # Licensed under the Apache License 2.0 (the "License").  You may not use
5 # this file except in compliance with the License.  You can obtain a copy
6 # in the file LICENSE in the source distribution or at
7 # https://www.openssl.org/source/license.html
8
9
10 use strict;
11 use warnings;
12
13 use OpenSSL::Test qw(:DEFAULT data_file bldtop_dir srctop_file srctop_dir bldtop_file);
14 use OpenSSL::Test::Utils;
15
16 BEGIN {
17 setup("test_evp");
18 }
19
20 use lib srctop_dir('Configurations');
21 use lib bldtop_dir('.');
22 use platform;
23
24 my $no_fips = disabled('fips') || ($ENV{NO_FIPS} // 0);
25 my $no_legacy = disabled('legacy') || ($ENV{NO_LEGACY} // 0);
26
27 # Default config depends on if the legacy module is built or not
28 my $defaultcnf = $no_legacy ? 'default.cnf' : 'default-and-legacy.cnf';
29
30 my @configs = ( $defaultcnf );
31 # Only add the FIPS config if the FIPS module has been built
32 push @configs, 'fips.cnf' unless $no_fips;
33
34 my @files = qw( evpciph.txt evpdigest.txt evppkey.txt evppkey_ecc.txt);
35 my @defltfiles = qw( evpencod.txt evpkdf.txt evppkey_kdf.txt evpmac.txt
36     evppbe.txt evpcase.txt evpccmcavs.txt );
37 my @ideafiles = qw( evpciph_idea.txt );
38 push @defltfiles, @ideafiles unless disabled("idea");
39
40 my @sivfiles = qw( evpaessiv.txt );
41 push @defltfiles, @sivfiles unless disabled("siv");
42
43 my @castfiles = qw( evpciph_cast5.txt );
44 push @defltfiles, @castfiles unless disabled("cast");
45
46 my @seedfiles = qw( evpciph_seed.txt );
47 push @defltfiles, @seedfiles unless disabled("seed");
48
49 my @sm4files = qw( evpciph_sm4.txt );
50 push @defltfiles, @sm4files unless disabled("sm4");
51
52 my @desfiles = qw( evpciph_des.txt );
53 push @defltfiles, @desfiles unless disabled("des");
54
55 my @rc4files = qw( evpciph_rc4.txt );
56 push @defltfiles, @rc4files unless disabled("rc4");
57
58 my @rc5files = qw( evpciph_rc5.txt );
59 push @defltfiles, @rc5files unless disabled("rc5");
60
61 my @rc2files = qw( evpciph_rc2.txt );
62 push @defltfiles, @rc2files unless disabled("rc2");
63
64 my @chachafiles = qw( evpciph_chacha.txt );
65 push @defltfiles, @chachafiles unless disabled("chacha");
66
67 my @bffiles = qw( evpciph_bf.txt );
68 push @defltfiles, @bffiles unless disabled("bf");
69
70 my @md2files = qw( evpmd_md2.txt );
71 push @defltfiles, @md2files unless disabled("md2");
72
73 my @mdc2files = qw( evpmd_mdc2.txt );
74 push @defltfiles, @mdc2files unless disabled("mdc2");
75
76 plan tests =>
77     ($no_fips ? 0 : 1)          # FIPS install test
78     + (scalar(@configs) * scalar(@files))
79     + scalar(@defltfiles);
80
81 unless ($no_fips) {
82     my $infile = bldtop_file('providers', platform->dso('fips'));
83     $ENV{OPENSSL_MODULES} = bldtop_dir("providers");
84     $ENV{OPENSSL_CONF_INCLUDE} = bldtop_dir("providers");
85
86     ok(run(app(['openssl', 'fipsinstall',
87                 '-out', bldtop_file('providers', 'fipsinstall.cnf'),
88                 '-module', $infile,
89                 '-provider_name', 'fips', '-mac_name', 'HMAC',
90                 '-macopt', 'digest:SHA256', '-macopt', 'hexkey:00',
91                 '-section_name', 'fips_sect'])),
92        "fipsinstall");
93 }
94
95 foreach (@configs) {
96     $ENV{OPENSSL_CONF} = srctop_file("test", $_);
97
98     foreach my $f ( @files ) {
99         ok(run(test(["evp_test", data_file("$f")])),
100            "running evp_test $f");
101     }
102 }
103
104 #TODO(3.0): As more operations are converted to providers we can move more of
105 #           these tests to the loop above
106
107 $ENV{OPENSSL_CONF} = srctop_file("test", $defaultcnf);
108
109 foreach my $f ( @defltfiles ) {
110     ok(run(test(["evp_test", data_file("$f")])),
111        "running evp_test $f");
112 }