1 | #! /usr/bin/env perl
|
---|
2 | # Copyright 2020-2021 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 | use strict;
|
---|
10 | use warnings;
|
---|
11 |
|
---|
12 | use OpenSSL::Test qw/:DEFAULT srctop_dir srctop_file bldtop_dir bldtop_file/;
|
---|
13 | use OpenSSL::Test::Utils;
|
---|
14 |
|
---|
15 | BEGIN {
|
---|
16 | setup("test_encoder_decoder");
|
---|
17 | }
|
---|
18 |
|
---|
19 | use lib srctop_dir('Configurations');
|
---|
20 | use lib bldtop_dir('.');
|
---|
21 | use platform;
|
---|
22 |
|
---|
23 | my $no_fips = disabled('fips') || ($ENV{NO_FIPS} // 0);
|
---|
24 |
|
---|
25 | my $rsa_key = srctop_file("test", "certs", "ee-key.pem");
|
---|
26 | my $pss_key = srctop_file("test", "certs", "ca-pss-key.pem");
|
---|
27 |
|
---|
28 | plan tests => ($no_fips ? 0 : 1) + 2; # FIPS install test + test
|
---|
29 |
|
---|
30 | my $conf = srctop_file("test", "default.cnf");
|
---|
31 | ok(run(test(["endecode_test", "-rsa", $rsa_key,
|
---|
32 | "-pss", $pss_key,
|
---|
33 | "-config", $conf,
|
---|
34 | "-provider", "default"])));
|
---|
35 |
|
---|
36 | # Run with non-default library context
|
---|
37 | ok(run(test(["endecode_test", "-rsa", $rsa_key,
|
---|
38 | "-pss", $pss_key,
|
---|
39 | "-context",
|
---|
40 | "-config", $conf,
|
---|
41 | "-provider", "default"])));
|
---|
42 |
|
---|
43 | unless ($no_fips) {
|
---|
44 | # Run with fips library context
|
---|
45 | my $conf = srctop_file("test", "fips-and-base.cnf");
|
---|
46 | ok(run(test(["endecode_test", "-rsa", $rsa_key,
|
---|
47 | "-pss", $pss_key,
|
---|
48 | "-config", $conf,
|
---|
49 | "-provider", "fips"])));
|
---|
50 | }
|
---|
51 |
|
---|