aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2022-11-14 10:25:15 -0500
committerTomas Mraz <tomas@openssl.org>2022-11-16 17:07:05 +0100
commit5aaa3458e5d21898cec119f80ffec0b0023ce9c9 (patch)
tree99b1d7001767dbdaaefaba3dea59e5929b0b3f25 /test
parent31d6565c846f84a0b3cb64c90cfc295c6f92ce6f (diff)
downloadopenssl-5aaa3458e5d21898cec119f80ffec0b0023ce9c9.zip
openssl-5aaa3458e5d21898cec119f80ffec0b0023ce9c9.tar.gz
openssl-5aaa3458e5d21898cec119f80ffec0b0023ce9c9.tar.bz2
Drop explicit check for engines in opt_legacy_okay
The providers indication should always indicate that this is not a legacy request. This makes a check for engines redundant as the default return is that legacy is ok if there are no explicit providers. Fixes #19662 Signed-off-by: Simo Sorce <simo@redhat.com> Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19671) (cherry picked from commit 2fea56832780248af2aba2e4433ece2d18428515)
Diffstat (limited to 'test')
-rwxr-xr-xtest/recipes/20-test_legacy_okay.t23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/recipes/20-test_legacy_okay.t b/test/recipes/20-test_legacy_okay.t
new file mode 100755
index 0000000..183499f
--- /dev/null
+++ b/test/recipes/20-test_legacy_okay.t
@@ -0,0 +1,23 @@
+#! /usr/bin/env perl
+# Copyright 2020-2021 The OpenSSL Project Authors. 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 OpenSSL::Test;
+
+setup("test_legacy");
+
+plan tests => 3;
+
+ok(run(app(['openssl', 'rand', '-out', 'rand.txt', '256'])), "Generate random file");
+
+ok(run(app(['openssl', 'dgst', '-sha256', 'rand.txt'])), "Generate a digest");
+
+ok(!run(app(['openssl', 'dgst', '-sha256', '-propquery', 'foo=1',
+ 'rand.txt'])), "Fail to generate a digest");