00-base-templates.conf: wire keccak1600-armv8 module.
[openssl.git] / test / recipes / 20-test_enc_more.t
1 #! /usr/bin/env perl
2 # Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
3 # Copyright (c) 2017, Oracle and/or its affiliates.  All rights reserved.
4 #
5 # Licensed under the OpenSSL license (the "License").  You may not use
6 # this file except in compliance with the License.  You can obtain a copy
7 # in the file LICENSE in the source distribution or at
8 # https://www.openssl.org/source/license.html
9
10
11 use strict;
12 use warnings;
13
14 use File::Spec::Functions qw/catfile/;
15 use File::Copy;
16 use File::Compare qw/compare_text/;
17 use File::Basename;
18 use OpenSSL::Test qw/:DEFAULT srctop_file/;
19
20 setup("test_evp_more");
21
22 my $testsrc = srctop_file("test", "recipes", basename($0));
23
24 my $cipherlist = undef;
25 my $plaintext = catfile(".", "testdatafile");
26 my $fail = "";
27 my $cmd = "openssl";
28
29 my $ciphersstatus = undef;
30 my @ciphers =
31     grep(! /wrap|^$|^[^-]/,
32          (map { split /\s+/ }
33           run(app([$cmd, "enc", "-ciphers"]),
34               capture => 1, statusvar => \$ciphersstatus)));
35
36 plan tests => 2 + scalar @ciphers;
37
38 SKIP: {
39     skip "Problems getting ciphers...", 1 + scalar(@ciphers)
40         unless ok($ciphersstatus, "Running 'openssl enc -ciphers'");
41     unless (ok(copy($testsrc, $plaintext), "Copying $testsrc to $plaintext")) {
42         diag($!);
43         skip "Not initialized, skipping...", scalar(@ciphers);
44     }
45
46     foreach my $cipher (@ciphers) {
47         my $ciphername = substr $cipher, 1;
48         my $cipherfile = "$plaintext.$ciphername.cipher";
49         my $clearfile = "$plaintext.$ciphername.clear";
50         my @common = ( $cmd, "enc", "$cipher", "-k", "test" );
51
52         ok(run(app([@common, "-e", "-in", $plaintext, "-out", $cipherfile]))
53            && compare_text($plaintext, $cipherfile) != 0
54            && run(app([@common, "-d", "-in", $cipherfile, "-out", $clearfile]))
55            && compare_text($plaintext, $clearfile) == 0
56            , $ciphername);
57         unlink $cipherfile, $clearfile;
58     }
59 }
60
61 unlink $plaintext;