]> git.ipfire.org Git - thirdparty/openssl.git/blob - test/recipes/20-test_enc.t
Move legacy ciphers into the legacy provider
[thirdparty/openssl.git] / test / recipes / 20-test_enc.t
1 #! /usr/bin/env perl
2 # Copyright 2015-2016 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 File::Spec::Functions qw/catfile/;
14 use File::Copy;
15 use File::Compare qw/compare_text/;
16 use File::Basename;
17 use OpenSSL::Test qw/:DEFAULT srctop_file bldtop_dir/;
18
19 setup("test_enc");
20
21 # We do it this way, because setup() may have moved us around,
22 # so the directory portion of $0 might not be correct any more.
23 # However, the name hasn't changed.
24 my $testsrc = srctop_file("test","recipes",basename($0));
25
26 my $test = catfile(".", "p");
27
28 my $cmd = "openssl";
29 my $provpath = bldtop_dir("providers");
30 my @prov = ("-provider_path", $provpath, "-provider", "default", "-provider", "legacy");
31
32 my $ciphersstatus = undef;
33 my @ciphers =
34 map { s/^\s+//; s/\s+$//; split /\s+/ }
35 run(app([$cmd, "list", "-cipher-commands"]),
36 capture => 1, statusvar => \$ciphersstatus);
37
38 plan tests => 2 + (scalar @ciphers)*2;
39
40 SKIP: {
41 skip "Problems getting ciphers...", 1 + scalar(@ciphers)
42 unless ok($ciphersstatus, "Running 'openssl list -cipher-commands'");
43 unless (ok(copy($testsrc, $test), "Copying $testsrc to $test")) {
44 diag($!);
45 skip "Not initialized, skipping...", scalar(@ciphers);
46 }
47
48 foreach my $c (@ciphers) {
49 my %variant = ("$c" => [],
50 "$c base64" => [ "-a" ]);
51
52 foreach my $t (sort keys %variant) {
53 my $cipherfile = "$test.$c.cipher";
54 my $clearfile = "$test.$c.clear";
55 my @e = ( "$c", "-bufsize", "113", @{$variant{$t}}, "-e", "-k", "test" );
56 my @d = ( "$c", "-bufsize", "157", @{$variant{$t}}, "-d", "-k", "test" );
57 if ($c eq "cat") {
58 $cipherfile = "$test.cipher";
59 $clearfile = "$test.clear";
60 @e = ( "enc", @{$variant{$t}}, "-e" );
61 @d = ( "enc", @{$variant{$t}}, "-d" );
62 }
63
64 ok(run(app([$cmd, @e, @prov, "-in", $test, "-out", $cipherfile]))
65 && run(app([$cmd, @d, @prov, "-in", $cipherfile, "-out", $clearfile]))
66 && compare_text($test,$clearfile) == 0, $t);
67 }
68 }
69 }