xref: /openssl/test/recipes/25-test_x509.t (revision 80b0a33b)
1#! /usr/bin/env perl
2# Copyright 2015-2024 The OpenSSL Project Authors. All Rights Reserved.
3#
4# Licensed under the Apache License 2.0 (the "License").  You may not use
5# this file except in compliance with the License.  You can obtain a copy
6# in the file LICENSE in the source distribution or at
7# https://www.openssl.org/source/license.html
8
9
10use strict;
11use warnings;
12
13use File::Spec;
14use OpenSSL::Test::Utils;
15use OpenSSL::Test qw/:DEFAULT srctop_file/;
16
17setup("test_x509");
18
19plan tests => 111;
20
21# Prevent MSys2 filename munging for arguments that look like file paths but
22# aren't
23$ENV{MSYS2_ARG_CONV_EXCL} = "/CN=";
24
25require_ok(srctop_file("test", "recipes", "tconversion.pl"));
26
27my @certs = qw(test certs);
28my $pem = srctop_file(@certs, "cyrillic.pem");
29my $out_msb = "out-cyrillic.msb";
30my $out_utf8 = "out-cyrillic.utf8";
31my $der = "cyrillic.der";
32my $der2 = "cyrillic.der";
33my $msb = srctop_file(@certs, "cyrillic.msb");
34my $utf = srctop_file(@certs, "cyrillic.utf8");
35
36ok(run(app(["openssl", "x509", "-text", "-in", $pem, "-out", $out_msb,
37            "-nameopt", "esc_msb"])));
38is(cmp_text($out_msb, $msb),
39   0, 'Comparing esc_msb output with cyrillic.msb');
40ok(run(app(["openssl", "x509", "-text", "-in", $pem, "-out", $out_utf8,
41            "-nameopt", "utf8"])));
42is(cmp_text($out_utf8, $utf),
43   0, 'Comparing utf8 output with cyrillic.utf8');
44
45SKIP: {
46    skip "DES disabled", 1 if disabled("des");
47    skip "Platform doesn't support command line UTF-8", 1 if $^O =~ /^(VMS|msys)$/;
48
49    my $p12 = srctop_file("test", "shibboleth.pfx");
50    my $p12pass = "σύνθημα γνώρισμα";
51    my $out_pem = "out.pem";
52    ok(run(app(["openssl", "x509", "-text", "-in", $p12, "-out", $out_pem,
53                "-passin", "pass:$p12pass"])));
54    # not unlinking $out_pem
55}
56
57ok(!run(app(["openssl", "x509", "-in", $pem, "-inform", "DER",
58             "-out", $der, "-outform", "DER"])),
59   "Checking failure of mismatching -inform DER");
60ok(run(app(["openssl", "x509", "-in", $pem, "-inform", "PEM",
61            "-out", $der, "-outform", "DER"])),
62   "Conversion to DER");
63ok(!run(app(["openssl", "x509", "-in", $der, "-inform", "PEM",
64             "-out", $der2, "-outform", "DER"])),
65   "Checking failure of mismatching -inform PEM");
66
67# producing and checking self-issued (but not self-signed) cert
68my $subj = "/CN=CA"; # using same DN as in issuer of ee-cert.pem
69my $extfile = srctop_file("test", "v3_ca_exts.cnf");
70my $pkey = srctop_file(@certs, "ca-key.pem"); # issuer private key
71my $pubkey = "ca-pubkey.pem"; # the corresponding issuer public key
72# use any (different) key for signing our self-issued cert:
73my $key = srctop_file(@certs, "serverkey.pem");
74my $selfout = "self-issued.out";
75my $testcert = srctop_file(@certs, "ee-cert.pem");
76ok(run(app(["openssl", "pkey", "-in", $pkey, "-pubout", "-out", $pubkey]))
77&& run(app(["openssl", "x509", "-new", "-force_pubkey", $pubkey, "-subj", $subj,
78            "-extfile", $extfile, "-key", $key, "-out", $selfout]))
79&& run(app(["openssl", "verify", "-no_check_time",
80            "-trusted", $selfout, "-partial_chain", $testcert])));
81# not unlinking $pubkey
82# not unlinking $selfout
83
84# test -set_issuer option
85my $ca_issu = srctop_file(@certs, "ca-cert.pem"); # issuer cert
86my $caout_issu = "ca-issu.out";
87ok(run(app(["openssl", "x509", "-new", "-force_pubkey", $key, "-subj", "/CN=EE",
88            "-set_issuer", "/CN=TEST-CA", "-extfile", $extfile, "-CA", $ca_issu,
89            "-CAkey", $pkey, "-text", "-out", $caout_issu])));
90ok(get_issuer($caout_issu) =~ /CN=TEST-CA/);
91# not unlinking $caout
92
93# simple way of directly producing a CA-signed cert with private/pubkey input
94my $ca = srctop_file(@certs, "ca-cert.pem"); # issuer cert
95my $caout = "ca-issued.out";
96ok(run(app(["openssl", "x509", "-new", "-force_pubkey", $key, "-subj", "/CN=EE",
97            "-extfile", $extfile, "-CA", $ca, "-CAkey", $pkey, "-out", $caout]))
98&& run(app(["openssl", "verify", "-no_check_time",
99            "-trusted", $ca, "-partial_chain", $caout])));
100
101subtest 'x509 -- x.509 v1 certificate' => sub {
102    tconversion( -type => 'x509', -prefix => 'x509v1',
103                 -in => srctop_file("test", "testx509.pem") );
104};
105subtest 'x509 -- first x.509 v3 certificate' => sub {
106    tconversion( -type => 'x509', -prefix => 'x509v3-1',
107                 -in => srctop_file("test", "v3-cert1.pem") );
108};
109subtest 'x509 -- second x.509 v3 certificate' => sub {
110    tconversion( -type => 'x509', -prefix => 'x509v3-2',
111                 -in => srctop_file("test", "v3-cert2.pem") );
112};
113
114subtest 'x509 -- pathlen' => sub {
115    ok(run(test(["v3ext", srctop_file(@certs, "pathlen.pem")])));
116};
117
118cert_contains(srctop_file(@certs, "fake-gp.pem"),
119              "2.16.528.1.1003.1.3.5.5.2-1-0000006666-Z-12345678-01.015-12345678",
120              1, 'x500 -- subjectAltName');
121
122cert_contains(srctop_file(@certs, "ext-noAssertion.pem"),
123              "No Assertion",
124              1, 'X.509 Not Assertion Extension');
125
126cert_contains(srctop_file(@certs, "ext-groupAC.pem"),
127              "Group Attribute Certificate",
128              1, 'X.509 Group Attribute Certificate Extension');
129
130cert_contains(srctop_file(@certs, "ext-sOAIdentifier.pem"),
131              "Source of Authority",
132              1, 'X.509 Source of Authority Extension');
133
134cert_contains(srctop_file(@certs, "ext-noRevAvail.pem"),
135              "No Revocation Available",
136              1, 'X.509 No Revocation Available');
137
138cert_contains(srctop_file(@certs, "ext-singleUse.pem"),
139              "Single Use",
140              1, 'X509v3 Single Use');
141
142cert_contains(srctop_file(@certs, "ext-indirectIssuer.pem"),
143              "Indirect Issuer",
144              1, 'X.509 Indirect Issuer');
145
146my $tgt_info_cert = srctop_file(@certs, "ext-targetingInformation.pem");
147cert_contains($tgt_info_cert,
148              "AC Targeting",
149              1, 'X.509 Targeting Information Extension');
150cert_contains($tgt_info_cert,
151              "Targets:",
152              1, 'X.509 Targeting Information Targets');
153cert_contains($tgt_info_cert,
154              "Target:",
155              1, 'X.509 Targeting Information Target');
156cert_contains($tgt_info_cert,
157              "Target Name: DirName:CN = W",
158              1, 'X.509 Targeting Information Target Name');
159cert_contains($tgt_info_cert,
160              "Target Group: DNS:wildboarsoftware.com",
161              1, 'X.509 Targeting Information Target Name');
162cert_contains($tgt_info_cert,
163              "Issuer Names:",
164              1, 'X.509 Targeting Information Issuer Names');
165cert_contains($tgt_info_cert,
166              "Issuer Serial: 01020304",
167              1, 'X.509 Targeting Information Issuer Serial');
168cert_contains($tgt_info_cert,
169              "Issuer UID: B0",
170              1, 'X.509 Targeting Information Issuer UID');
171cert_contains($tgt_info_cert,
172              "Digest Type: Public Key",
173              1, 'X.509 Targeting Information Object Digest Type');
174
175my $hnc_cert = srctop_file(@certs, "ext-holderNameConstraints.pem");
176cert_contains($hnc_cert,
177              "X509v3 Holder Name Constraints",
178              1, 'X.509 Holder Name Constraints');
179cert_contains($hnc_cert,
180              "Permitted:",
181              1, 'X.509 Holder Name Constraints Permitted');
182cert_contains($hnc_cert,
183              "DirName:CN = Wildboar",
184              1, 'X.509 Holder Name Constraint');
185
186my $dnc_cert = srctop_file(@certs, "ext-delegatedNameConstraints.pem");
187cert_contains($dnc_cert,
188              "X509v3 Delegated Name Constraints",
189              1, 'X.509 Delegated Name Constraints');
190cert_contains($dnc_cert,
191              "Permitted:",
192              1, 'X.509 Delegated Name Constraints Permitted');
193cert_contains($dnc_cert,
194              "DirName:CN = Wildboar",
195              1, 'X.509 Delegated Name Constraint');
196my $sda_cert = srctop_file(@certs, "ext-subjectDirectoryAttributes.pem");
197cert_contains($sda_cert,
198              "Steve Brule",
199              1, 'X.509 Subject Directory Attributes');
200cert_contains($sda_cert,
201              "CN=Hi mom",
202              1, 'X.509 Subject Directory Attributes');
203cert_contains($sda_cert,
204              "<No Values>",
205              1, 'X.509 Subject Directory Attributes');
206cert_contains($sda_cert,
207              "Funkytown",
208              1, 'X.509 Subject Directory Attributes');
209cert_contains($sda_cert,
210              "commonName",
211              1, 'X.509 Subject Directory Attributes');
212cert_contains($sda_cert,
213              "owner",
214              1, 'X.509 Subject Directory Attributes');
215cert_contains($sda_cert,
216              "givenName",
217              1, 'X.509 Subject Directory Attributes');
218cert_contains($sda_cert,
219              "localityName",
220              1, 'X.509 Subject Directory Attributes');
221
222my $ass_info_cert = srctop_file(@certs, "ext-associatedInformation.pem");
223cert_contains($ass_info_cert,
224              "Steve Brule",
225              1, 'X509v3 Associated Information');
226cert_contains($ass_info_cert,
227              "CN=Hi mom",
228              1, 'X509v3 Associated Information');
229cert_contains($ass_info_cert,
230              "<No Values>",
231              1, 'X509v3 Associated Information');
232cert_contains($ass_info_cert,
233              "Funkytown",
234              1, 'X509v3 Associated Information');
235cert_contains($ass_info_cert,
236              "commonName",
237              1, 'X509v3 Associated Information');
238cert_contains($ass_info_cert,
239              "owner",
240              1, 'X509v3 Associated Information');
241cert_contains($sda_cert,
242              "givenName",
243              1, 'X509v3 Associated Information');
244cert_contains($ass_info_cert,
245              "localityName",
246              1, 'X509v3 Associated Information');
247
248my $acc_cert_pol = srctop_file(@certs, "ext-acceptableCertPolicies.pem");
249cert_contains($acc_cert_pol,
250              "X509v3 Acceptable Certification Policies",
251              1, 'X509v3 Acceptable Certification Policies');
252# Yes, I know these OIDs make no sense in a policies extension. It's just a test.
253cert_contains($acc_cert_pol,
254              "organizationalUnitName",
255              1, 'X509v3 Acceptable Certification Policies');
256cert_contains($acc_cert_pol,
257              "description",
258              1, 'X509v3 Acceptable Certification Policies');
259
260my $acc_priv_pol = srctop_file(@certs, "ext-acceptablePrivilegePolicies.pem");
261cert_contains($acc_priv_pol,
262              "X509v3 Acceptable Privilege Policies",
263              1, 'X509v3 Acceptable Privilege Policies');
264# Yes, I know these OIDs make no sense in a policies extension. It's just a test.
265cert_contains($acc_priv_pol,
266              "commonName",
267              1, 'X509v3 Acceptable Certification Policies');
268cert_contains($acc_priv_pol,
269              "organizationName",
270              1, 'X509v3 Acceptable Certification Policies');
271
272my $user_notice_cert = srctop_file(@certs, "ext-userNotice.pem");
273cert_contains($user_notice_cert,
274              "Organization: Wildboar Software",
275              1, 'X509v3 User Notice');
276cert_contains($user_notice_cert,
277              "Numbers: 123, 456",
278              1, 'X509v3 User Notice');
279cert_contains($user_notice_cert,
280              "Explicit Text: Hey there big boi",
281              1, 'X509v3 User Notice');
282cert_contains($user_notice_cert,
283              "Number: 50505",
284              1, 'X509v3 User Notice');
285cert_contains($user_notice_cert,
286              "Explicit Text: Ice ice baby",
287              1, 'X509v3 User Notice');
288
289my $battcons_cert = srctop_file(@certs, "ext-basicAttConstraints.pem");
290cert_contains($battcons_cert,
291              "authority:TRUE",
292              1, 'X.509 Basic Attribute Constraints Authority');
293cert_contains($battcons_cert,
294              "pathlen:3",
295              1, 'X.509 Basic Attribute Constraints Path Length');
296
297my $audit_id_cert = srctop_file(@certs, "ext-auditIdentity.pem");
298cert_contains($audit_id_cert,
299              "09:08:07",
300              1, 'X509v3 Audit Identity');
301
302my $iobo_cert = srctop_file(@certs, "ext-issuedOnBehalfOf.pem");
303cert_contains($iobo_cert,
304              "DirName:CN = Wildboar",
305              1, 'X.509 Issued On Behalf Of');
306
307my $auth_att_id_cert = srctop_file(@certs, "ext-authorityAttributeIdentifier.pem");
308cert_contains($auth_att_id_cert,
309              "DirName:CN = Wildboar",
310              1, 'X.509 Authority Attribute Identifier');
311cert_contains($auth_att_id_cert,
312              "Issuer Serial: 01030507",
313              1, 'X.509 Authority Attribute Identifier');
314cert_contains($auth_att_id_cert,
315              "Issuer UID: B2",
316              1, 'X.509 Authority Attribute Identifier');
317
318my $role_spec_cert = srctop_file(@certs, "ext-roleSpecCertIdentifier.pem");
319cert_contains($role_spec_cert,
320              "Role Name: DirName:CN = Wildboar",
321              1, 'X.509 Role Spec Certificate Identifier');
322cert_contains($role_spec_cert,
323              "Role Certificate Issuer: DirName:CN",
324              1, 'X.509 Role Spec Certificate Identifier');
325cert_contains($role_spec_cert,
326              "Role Certificate Serial Number: 33818120 \\(0x2040608\\)",
327              1, 'X.509 Role Spec Certificate Identifier');
328cert_contains($role_spec_cert,
329              "DNS:wildboarsoftware.com",
330              1, 'X.509 Role Spec Certificate Identifier');
331cert_contains($role_spec_cert,
332              "Registered ID:description",
333              1, 'X.509 Role Spec Certificate Identifier');
334
335my $attr_desc_cert = srctop_file(@certs, "ext-attributeDescriptor.pem");
336cert_contains($attr_desc_cert,
337              "Identifier: 2.5.4.3",
338              1, 'X.509 Attribute Descriptor');
339# This comes from the syntax field, which starts on the next line.
340cert_contains($attr_desc_cert,
341              "UnboundedDirectoryString",
342              1, 'X.509 Attribute Descriptor');
343cert_contains($attr_desc_cert,
344              "Name: commonName",
345              1, 'X.509 Attribute Descriptor');
346# These comes from the dominationRule field.
347cert_contains($attr_desc_cert,
348              "Privilege Policy Identifier: 2.5.4.10",
349              1, 'X.509 Attribute Descriptor');
350cert_contains($attr_desc_cert,
351              "DirName:CN = Wildboar",
352              1, 'X.509 Attribute Descriptor');
353cert_contains($attr_desc_cert,
354              "Algorithm: sha256",
355              1, 'X.509 Attribute Descriptor');
356
357sub test_errors { # actually tests diagnostics of OSSL_STORE
358    my ($expected, $cert, @opts) = @_;
359    my $infile = srctop_file(@certs, $cert);
360    my @args = qw(openssl x509 -in);
361    push(@args, $infile, @opts);
362    my $tmpfile = 'out.txt';
363    my $res =  grep(/-text/, @opts) ? run(app([@args], stdout => $tmpfile))
364                                    : !run(app([@args], stderr => $tmpfile));
365    my $found = 0;
366    open(my $in, '<', $tmpfile) or die "Could not open file $tmpfile";
367    while(<$in>) {
368        print; # this may help debugging
369        $res &&= !m/asn1 encoding/; # output must not include ASN.1 parse errors
370        $found = 1 if m/$expected/; # output must include $expected
371    }
372    close $in;
373    # $tmpfile is kept to help with investigation in case of failure
374    return $res && $found;
375}
376
377# 3 tests for non-existence of spurious OSSL_STORE ASN.1 parse error output.
378# This requires provoking a failure exit of the app after reading input files.
379ok(test_errors("Bad output format", "root-cert.pem", '-outform', 'http'),
380   "load root-cert errors");
381ok(test_errors("RC2-40-CBC", "v3-certs-RC2.p12", '-passin', 'pass:v3-certs'),
382   "load v3-certs-RC2 no asn1 errors"); # error msg should mention "RC2-40-CBC"
383SKIP: {
384    skip "sm2 not disabled", 1 if !disabled("sm2");
385
386    ok(test_errors("Unable to load Public Key", "sm2.pem", '-text'),
387       "error loading unsupported sm2 cert");
388}
389
390# 3 tests for -dateopts formats
391ok(run(app(["openssl", "x509", "-noout", "-dates", "-dateopt", "rfc_822",
392	     "-in", srctop_file("test/certs", "ca-cert.pem")])),
393   "Run with rfc_8222 -dateopt format");
394ok(run(app(["openssl", "x509", "-noout", "-dates", "-dateopt", "iso_8601",
395	     "-in", srctop_file("test/certs", "ca-cert.pem")])),
396   "Run with iso_8601 -dateopt format");
397ok(!run(app(["openssl", "x509", "-noout", "-dates", "-dateopt", "invalid_format",
398	     "-in", srctop_file("test/certs", "ca-cert.pem")])),
399   "Run with invalid -dateopt format");
400
401# Tests for signing certs (broken in 1.1.1o)
402my $a_key = "a-key.pem";
403my $a_cert = "a-cert.pem";
404my $a2_cert = "a2-cert.pem";
405my $ca_key = "ca-key.pem";
406my $ca_cert = "ca-cert.pem";
407my $cnf = srctop_file('apps', 'openssl.cnf');
408
409# Create cert A
410ok(run(app(["openssl", "req", "-x509", "-newkey", "rsa:2048",
411            "-config", $cnf,
412            "-keyout", $a_key, "-out", $a_cert, "-days", "365",
413            "-nodes", "-subj", "/CN=test.example.com"])));
414# Create cert CA - note key size
415ok(run(app(["openssl", "req", "-x509", "-newkey", "rsa:4096",
416            "-config", $cnf,
417            "-keyout", $ca_key, "-out", $ca_cert, "-days", "3650",
418            "-nodes", "-subj", "/CN=ca.example.com"])));
419# Sign cert A with CA (errors on 1.1.1o)
420ok(run(app(["openssl", "x509", "-in", $a_cert, "-CA", $ca_cert,
421            "-CAkey", $ca_key, "-set_serial", "1234567890",
422            "-preserve_dates", "-sha256", "-text", "-out", $a2_cert])));
423# verify issuer is CA
424ok(get_issuer($a2_cert) =~ /CN=ca.example.com/);
425
426my $in_csr = srctop_file('test', 'certs', 'x509-check.csr');
427my $in_key = srctop_file('test', 'certs', 'x509-check-key.pem');
428my $invextfile = srctop_file('test', 'invalid-x509.cnf');
429# Test that invalid extensions settings fail
430ok(!run(app(["openssl", "x509", "-req", "-in", $in_csr, "-signkey", $in_key,
431            "-out", "/dev/null", "-days", "3650" , "-extensions", "ext",
432            "-extfile", $invextfile])));
433
434# Tests for issue #16080 (fixed in 1.1.1o)
435my $b_key = "b-key.pem";
436my $b_csr = "b-cert.csr";
437my $b_cert = "b-cert.pem";
438# Create the CSR
439ok(run(app(["openssl", "req", "-new", "-newkey", "rsa:4096",
440            "-keyout", $b_key, "-out", $b_csr, "-nodes",
441            "-config", $cnf,
442            "-subj", "/CN=b.example.com"])));
443# Sign it - position of "-text" matters!
444ok(run(app(["openssl", "x509", "-req", "-text", "-CAcreateserial",
445            "-CA", $ca_cert, "-CAkey", $ca_key,
446            "-in", $b_csr, "-out", $b_cert])));
447# Verify issuer is CA
448ok(get_issuer($b_cert) =~ /CN=ca.example.com/);
449
450# although no explicit extensions given:
451has_version($b_cert, 3);
452has_SKID($b_cert, 1);
453has_AKID($b_cert, 1);
454
455# Tests for https://github.com/openssl/openssl/issues/10442 (fixed in 1.1.1a)
456# (incorrect default `-CAcreateserial` if `-CA` path has a dot in it)
457my $folder_with_dot = "test_x509.folder";
458ok(mkdir $folder_with_dot);
459my $ca_cert_dot_in_dir = File::Spec->catfile($folder_with_dot, "ca-cert.pem");
460ok(copy($ca_cert,$ca_cert_dot_in_dir));
461my $ca_serial_dot_in_dir = File::Spec->catfile($folder_with_dot, "ca-cert.srl");
462
463ok(run(app(["openssl", "x509", "-req", "-text", "-CAcreateserial",
464            "-CA", $ca_cert_dot_in_dir, "-CAkey", $ca_key,
465            "-in", $b_csr])));
466ok(-e $ca_serial_dot_in_dir);
467
468# Tests for explicit start and end dates of certificates
469my %today = (strftime("%Y-%m-%d", gmtime) => 1);
470my $enddate;
471ok(run(app(["openssl", "x509", "-req", "-text",
472	    "-key", $b_key,
473	    "-not_before", "20231031000000Z",
474	    "-not_after", "today",
475            "-in", $b_csr, "-out", $b_cert]))
476&& get_not_before($b_cert) =~ /Oct 31 00:00:00 2023 GMT/
477&& ++$today{strftime("%Y-%m-%d", gmtime)}
478&& (grep { defined $today{$_} } get_not_after_date($b_cert)));
479# explicit start and end dates
480ok(run(app(["openssl", "x509", "-req", "-text",
481	    "-key", $b_key,
482	    "-not_before", "20231031000000Z",
483	    "-not_after", "20231231000000Z",
484	    "-days", "99",
485            "-in", $b_csr, "-out", $b_cert]))
486&& get_not_before($b_cert) =~ /Oct 31 00:00:00 2023 GMT/
487&& get_not_after($b_cert) =~ /Dec 31 00:00:00 2023 GMT/);
488# start date today and days
489%today = (strftime("%Y-%m-%d", gmtime) => 1);
490$enddate = strftime("%Y-%m-%d", gmtime(time + 99 * 24 * 60 * 60));
491ok(run(app(["openssl", "x509", "-req", "-text",
492	    "-key", $b_key,
493	    "-not_before", "today",
494	    "-days", "99",
495            "-in", $b_csr, "-out", $b_cert]))
496&& ++$today{strftime("%Y-%m-%d", gmtime)}
497&& (grep { defined $today{$_} } get_not_before_date($b_cert))
498&& get_not_after_date($b_cert) eq $enddate);
499# end date before start date
500ok(!run(app(["openssl", "x509", "-req", "-text",
501	      "-key", $b_key,
502	      "-not_before", "today",
503	      "-not_after", "20231031000000Z",
504              "-in", $b_csr, "-out", $b_cert])));
505# default days option
506%today = (strftime("%Y-%m-%d", gmtime) => 1);
507$enddate = strftime("%Y-%m-%d", gmtime(time + 30 * 24 * 60 * 60));
508ok(run(app(["openssl", "x509", "-req", "-text",
509	    "-key", $b_key,
510            "-in", $b_csr, "-out", $b_cert]))
511&& ++$today{strftime("%Y-%m-%d", gmtime)}
512&& (grep { defined $today{$_} } get_not_before_date($b_cert))
513&& get_not_after_date($b_cert) eq $enddate);
514
515SKIP: {
516    skip "EC is not supported by this OpenSSL build", 1
517        if disabled("ec");
518    my $psscert = srctop_file(@certs, "ee-self-signed-pss.pem");
519
520    ok(run(test(["x509_test", $psscert])), "running x509_test");
521}
522