Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
Program Files
/
OpenSSL-Win64
/
tests
/
recipes
/
View File Name :
30-test_slh_dsa.t
#! /usr/bin/env perl # Copyright 2024-2025 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 qw(:DEFAULT srctop_dir bldtop_dir srctop_file); use OpenSSL::Test::Utils; BEGIN { setup("test_slh_dsa"); } my $provconf = srctop_file("test", "fips-and-base.cnf"); my $no_fips = disabled('fips') || ($ENV{NO_FIPS} // 0); use lib srctop_dir('Configurations'); use lib bldtop_dir('.'); plan skip_all => 'SLH-DSA is not supported in this build' if disabled('slh-dsa'); plan tests => 2; ok(run(test(["slh_dsa_test"])), "running slh_dsa_test"); SKIP: { skip "Skipping FIPS tests", 1 if $no_fips; # SLH-DSA is only present after OpenSSL 3.5 run(test(["fips_version_test", "-config", $provconf, ">=3.5.0"]), capture => 1, statusvar => \my $exit); skip "FIPS provider version is too old for SLH_DSA test", 1 if !$exit; ok(run(test(["slh_dsa_test", "-config", $provconf])), "running slh_dsa_test with FIPS"); }