in reply to Getting an SSL Certificate Expiration Date
My understanding is that you can supply your own callback via LWP::UserAgent to do your own processing at the certificate-validation phase. That would avoid the need for a second connection. This isn't something I have done but the docs suggest it might be a feasible approach.
my $ua = LWP::UserAgent->new ( ssl_opts => { SSL_verify_callback => \&my_handler } );
🦛
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Getting an SSL Certificate Expiration Date
by haukex (Archbishop) on Feb 08, 2022 at 22:55 UTC |