ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/OpenSSL/OpenSSL/RSA.pm
Revision: 1.1
Committed: Sat Oct 27 01:53:24 2001 UTC (22 years, 7 months ago) by stefan
Branch: MAIN
CVS Tags: BEFORE_5_8_REGEX_FIX, HEAD
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 stefan 1.1 package OpenSSL::RSA;
2    
3     =head1 NAME
4    
5     OpenSSL::RSA -- Access to OpenSSL RSA functions
6    
7     =head1 SYNOPSIS
8    
9     use OpenSSL::RSA;
10    
11     =cut
12    
13     use OpenSSL;
14    
15     our $VERSION = '0.06';
16     use base Exporter;
17     @EXPORT_OK = qw(new_keygen);
18    
19     =head1 FUNCTIONS
20    
21     =over 4
22    
23     =item $rsakey = new_keygen([$bits[,$e]])
24    
25     =back
26    
27     =head1 SEE ALSO
28    
29     L<OpenSSL>, L<OpenSSL::HMAC>.
30    
31     =head1 AUTHOR
32    
33     Stefan Traby <stefan@hello-penguin.com>
34     http://mindterm.plan9.de/
35    
36     =cut
37    
38     1;