Lines Matching +full:skip +full:- +full:config
2 # Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.
25 my $rsa_key = srctop_file("test", "certs", "ee-key.pem");
26 my $pss_key = srctop_file("test", "certs", "ca-pss-key.pem");
37 open(my $in, $file) or return -1;
48 ok(run(test(["endecode_test", "-rsa", $rsa_key,
49 "-pss", $pss_key,
50 "-config", $conf,
51 "-provider", "default"])));
53 # Run with non-default library context
54 ok(run(test(["endecode_test", "-rsa", $rsa_key,
55 "-pss", $pss_key,
56 "-context",
57 "-config", $conf,
58 "-provider", "default"])));
62 my $conf = srctop_file("test", "fips-and-base.cnf");
63 ok(run(test(["endecode_test", "-rsa", $rsa_key,
64 "-pss", $pss_key,
65 "-config", $conf,
66 "-provider", "fips"])));
67 SKIP: {
68 skip "EC disabled", 2 if disabled("ec");
69 ok(run(app([ 'openssl', 'genpkey', '-algorithm', 'EC',
70 '-pkeyopt', 'group:P-256', '-text',
71 '-config', $conf, '-provider', 'fips', '-out', 'ec.txt' ])),
73 ok(find_line_file('NIST CURVE: P-256', 'ec.txt') == 1,