summaryrefslogtreecommitdiff
path: root/regress/usr.sbin/httpd/tests/args-tls-verify.pl
blob: fcabf30cbeb083bec852756cc7859feffb26347f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# test https connection, verifying client cert

use strict;
use warnings;

our %args = (
    client => {
	tls => 1,
	offertlscert => 1,
	loggrep => 'Issuer.*/OU=ca/',
    },
    httpd => {
	listentls => 1,
	verifytls => 1,
    },
    len => 512,
    md5 => path_md5("512")
);

1;