Lines Matching full:run
36 ok(run(app(["openssl", "x509", "-text", "-in", $pem, "-out", $out_msb,
40 ok(run(app(["openssl", "x509", "-text", "-in", $pem, "-out", $out_utf8,
52 ok(run(app(["openssl", "x509", "-text", "-in", $p12, "-out", $out_pem,
57 ok(!run(app(["openssl", "x509", "-in", $pem, "-inform", "DER",
60 ok(run(app(["openssl", "x509", "-in", $pem, "-inform", "PEM",
63 ok(!run(app(["openssl", "x509", "-in", $der, "-inform", "PEM",
76 ok(run(app(["openssl", "pkey", "-in", $pkey, "-pubout", "-out", $pubkey]))
77 && run(app(["openssl", "x509", "-new", "-force_pubkey", $pubkey,
80 && run(app(["openssl", "verify", "-no_check_time",
99 ok(run(test(["v3ext", srctop_file(@certs, "pathlen.pem")])));
112 my $res = grep(/-text/, @opts) ? run(app([@args], stdout => $tmpfile))
113 : !run(app([@args], stderr => $tmpfile));
140 ok(run(app(["openssl", "x509", "-noout", "-dates", "-dateopt", "rfc_822",
142 "Run with rfc_8222 -dateopt format");
143 ok(run(app(["openssl", "x509", "-noout", "-dates", "-dateopt", "iso_8601",
145 "Run with iso_8601 -dateopt format");
146 ok(!run(app(["openssl", "x509", "-noout", "-dates", "-dateopt", "invalid_format",
148 "Run with invalid -dateopt format");
173 ok(run(app(["openssl", "req", "-x509", "-newkey", "rsa:2048",
178 ok(run(app(["openssl", "req", "-x509", "-newkey", "rsa:4096",
183 ok(run(app(["openssl", "x509", "-in", $a_cert, "-CA", $ca_cert,
193 ok(!run(app(["openssl", "x509", "-req", "-in", $in_csr, "-signkey", $in_key,
202 ok(run(app(["openssl", "req", "-new", "-newkey", "rsa:4096",
207 ok(run(app(["openssl", "x509", "-req", "-text", "-CAcreateserial",