我是 Mojolicious 的新手,我正在尝试获取 Mojo::UserAgent 脚本以同时使用 TLS 证书颁发机构和 TLS 证书文件,但证书文件受密码保护。我在传递密码时遇到问题,因此可以打开客户端证书。
我有以下代码:
#!/usr/bin/env perl
use Modern::Perl;
use Mojo::UserAgent;
IO::Socket::SSL::set_defaults(SSL_passwd_cb => sub {return "password";});
my $ua = Mojo::UserAgent->new;
my $base_dir = '/path/to/certs/';
$ua->ca($base_dir . 'ca-cert.crt');
$ua->cert($base_dir . 'clientcert.crt');
my $tx = $ua->build_tx(POST => '/POST HTTP/1.1');
$tx->req->url->parse('https://example.com:12345');
$ua->start($tx);
if(my $res = $tx->success) {
say $res->body;
print Dumper($tx);
} else {
my ($err, $code) = $tx->error;
say $code ? "$code response: $err" : "Connection error: $err";
}
我已使用以下内容验证了证书:
openssl s_client -connect host:port -CApath /path/to/cert - CAfile ca-cert.crt -cert clientcert.crt
我收到提示:
Enter pass phrase for clientcert.crt:
我输入密码并正确验证。
那么,如何获取 IO::Socket::SSL 的密码呢?