/usr/lib64/perl5/vendor_perl/auto/Net/SSLeay
# NOTE: Derived from blib/lib/Net/SSLeay.pm. # Changes made here will be lost when autosplit is run again. # See AutoSplit.pm. package Net::SSLeay; #line 1520 "blib/lib/Net/SSLeay.pm (autosplit into blib/lib/auto/Net/SSLeay/dump_peer_certificate.al)" ### Quickly print out with whom we're talking sub dump_peer_certificate ($) { my ($ssl) = @_; my $cert = get_peer_certificate($ssl); return if print_errs('get_peer_certificate'); print "no cert defined\n" if !defined($cert); # Cipher=NONE with empty cert fix if (!defined($cert) || ($cert == 0)) { warn "cert = `$cert'\n" if $trace; return "Subject Name: undefined\nIssuer Name: undefined\n"; } else { my $x = 'Subject Name: ' . X509_NAME_oneline(X509_get_subject_name($cert)) . "\n" . 'Issuer Name: ' . X509_NAME_oneline(X509_get_issuer_name($cert)) . "\n"; Net::SSLeay::X509_free($cert); return $x; } } # end of Net::SSLeay::dump_peer_certificate 1;
.
Edit
..
Edit
SSLeay.so
Edit
autosplit.ix
Edit
debug_read.al
Edit
do_https.al
Edit
do_https2.al
Edit
do_https3.al
Edit
do_https4.al
Edit
do_httpx2.al
Edit
do_httpx3.al
Edit
do_httpx4.al
Edit
dump_peer_certificate.al
Edit
get_http.al
Edit
get_http3.al
Edit
get_http4.al
Edit
get_https.al
Edit
get_https3.al
Edit
get_https4.al
Edit
get_httpx.al
Edit
get_httpx3.al
Edit
get_httpx4.al
Edit
head_http.al
Edit
head_http3.al
Edit
head_http4.al
Edit
head_https.al
Edit
head_https3.al
Edit
head_https4.al
Edit
head_httpx.al
Edit
head_httpx3.al
Edit
head_httpx4.al
Edit
http_cat.al
Edit
https_cat.al
Edit
httpx_cat.al
Edit
initialize.al
Edit
make_form.al
Edit
make_headers.al
Edit
new_x_ctx.al
Edit
open_proxy_tcp_connection.al
Edit
open_tcp_connection.al
Edit
post_http.al
Edit
post_http3.al
Edit
post_http4.al
Edit
post_https.al
Edit
post_https3.al
Edit
post_https4.al
Edit
post_httpx.al
Edit
post_httpx3.al
Edit
post_httpx4.al
Edit
put_http.al
Edit
put_http3.al
Edit
put_http4.al
Edit
put_https.al
Edit
put_https3.al
Edit
put_https4.al
Edit
put_httpx.al
Edit
put_httpx3.al
Edit
put_httpx4.al
Edit
randomize.al
Edit
set_cert_and_key.al
Edit
set_proxy.al
Edit
set_server_cert_and_key.al
Edit
ssl_read_CRLF.al
Edit
ssl_read_all.al
Edit
ssl_read_until.al
Edit
ssl_write_CRLF.al
Edit
ssl_write_all.al
Edit
sslcat.al
Edit
tcp_read_CRLF.al
Edit
tcp_read_all.al
Edit
tcp_read_until.al
Edit
tcp_write_CRLF.al
Edit
tcp_write_all.al
Edit
tcpcat.al
Edit
tcpxcat.al
Edit
want_X509_lookup.al
Edit
want_nothing.al
Edit
want_read.al
Edit
want_write.al
Edit