PATH:
usr
/
share
/
doc
/
perl-Net-SSLeay-1.55
/
examples
#!/usr/bin/perl -w # ephemeral.pl mikem@open.com.au # # Test and demonstrate setting ephemeral RSA key use Net::SSLeay qw(die_now); Net::SSLeay::randomize(); Net::SSLeay::load_error_strings(); Net::SSLeay::ERR_load_crypto_strings(); Net::SSLeay::SSLeay_add_ssl_algorithms(); $ctx = Net::SSLeay::CTX_new() or die_now("Failed to create SSL_CTX $!"); $rsa = &Net::SSLeay::RSA_generate_key(512, 0x10001); # 0x10001 = RSA_F4 die_now("Failed to set ephemeral RSA key $!") if (&Net::SSLeay::CTX_set_tmp_rsa($ctx, $rsa) < 0); print "OK\n"; exit;
[-] https-proxy-snif.pl
[edit]
[-] ssl_diff.pl
[edit]
[-] get_page.pl
[edit]
[-] bulk.pl
[edit]
[+]
..
[-] ephemeral.pl
[edit]
[-] cli-cert.pl
[edit]
[-] tcpecho.pl
[edit]
[-] callback.pl
[edit]
[-] passwd-cb.pl
[edit]
[-] get_page_cert.pl
[edit]
[-] ssl-inetd-serv.pl
[edit]
[-] stdio_bulk.pl
[edit]
[-] cb-testi.pl
[edit]
[-] tcpcat.pl
[edit]
[-] server_key.pem
[edit]
[-] bio.pl
[edit]
[-] sslecho.pl
[edit]
[-] req.conf
[edit]
[-] x509_cert_details.pl
[edit]
[-] makecert.pl
[edit]
[-] get_authenticated_page.pl
[edit]
[-] sslcat.pl
[edit]
[-] minicli.pl
[edit]