Help for this page

Select Code to Download


  1. or download this
    use IO::Socket::SSL;
    my $cl = IO::Socket::SSL->new(
    ...
        SSL_verify_mode => 0
    );
    print $cl->get_fingerprint."\n"; # sha256$b64d26746ca1cd5403....
    
  2. or download this
    my $ua = LWP::UserAgent->new...
    $ua->ssl_opts(SSL_fingerprint => 'sha256$b64...');