gateway2/Tongsuo-8.4.0/test/recipes/20-test_enc_more.t
2026-07-11 13:40:57 +08:00

78 lines
2.6 KiB
Perl

#! /usr/bin/env perl
# Copyright 2017-2020 The OpenSSL Project Authors. All Rights Reserved.
# Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
#
# Licensed under the Apache License 2.0 (the "License"). You may not use
# this file except in compliance with the License. You can obtain a copy
# in the file LICENSE in the source distribution or at
# https://www.openssl.org/source/license.html
use strict;
use warnings;
use File::Spec::Functions qw/catfile/;
use File::Copy;
use File::Compare qw/compare_text/;
use File::Basename;
use OpenSSL::Test qw/:DEFAULT srctop_file bldtop_dir data_file/;
use OpenSSL::Test::Utils;
setup("test_enc_more");
my $testsrc = srctop_file("test", "recipes", basename($0));
my $plaintext = catfile(".", "testdatafile");
my $test_plain = data_file("plain_for_wrap.txt");
my $wrap_plaintext = catfile(".", "plain_for_wrap");
my $fail = "";
my $cmd = "openssl";
my $provpath = bldtop_dir("providers");
my @prov = ("-provider-path", $provpath, "-provider", "default");
push @prov, ("-provider", "legacy") unless disabled("legacy");
my $ciphersstatus = undef;
my @ciphers =
grep(! /^$|^[^-]/,
(map { split /\s+/ }
run(app([$cmd, "enc", "-list"]),
capture => 1, statusvar => \$ciphersstatus)));
@ciphers = grep {!/^-(des$|des-cbc|des-cfb|des-ecb|des-ofb
|desx|rc4)/x} @ciphers
if disabled("legacy");
plan tests => 3 + scalar @ciphers;
SKIP: {
skip "Problems getting ciphers...", 1 + scalar(@ciphers)
unless ok($ciphersstatus, "Running 'openssl enc -list'");
unless (ok(copy($testsrc, $plaintext), "Copying $testsrc to $plaintext")
&& ok(copy($test_plain, $wrap_plaintext),
"Copying $test_plain to $wrap_plaintext")) {
diag($!);
skip "Not initialized, skipping...", scalar(@ciphers);
}
foreach my $cipher (@ciphers) {
my $plain;
if ($cipher =~ /wrap|^$|^[^-]/) {
$plain = $wrap_plaintext;
} else {
$plain = $plaintext;
}
my $ciphername = substr $cipher, 1;
my $cipherfile = "$plain.$ciphername.cipher";
my $clearfile = "$plain.$ciphername.clear";
my @common = ( $cmd, "enc", "$cipher", "-k", "test" );
ok(run(app([@common, @prov, "-e", "-in", $plain, "-out", $cipherfile]))
&& compare_text($plain, $cipherfile) != 0
&& run(app([@common, @prov, "-d", "-in", $cipherfile, "-out", $clearfile]))
&& compare_text($plain, $clearfile) == 0
, $ciphername);
}
}
unlink $plaintext;
unlink $wrap_plaintext;