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

File Contents

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