File: CTX.pm

package info (click to toggle)
libcrypt-openssl-bignum-perl 0.09-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 164 kB
  • sloc: perl: 131; makefile: 3
file content (41 lines) | stat: -rwxr-xr-x 706 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package Crypt::OpenSSL::Bignum::CTX;

use 5.005;
use strict;
use Carp;

use Crypt::OpenSSL::Bignum;
use vars qw( @ISA );

require DynaLoader;

use base qw(DynaLoader);

bootstrap Crypt::OpenSSL::Bignum $Crypt::OpenSSL::Bignum::VERSION;

1;
__END__
# Below is stub documentation for your module. You better edit it!

=head1 NAME

Crypt::OpenSSL::Bignum::CTX - Perl interface to the OpenSSL BN_CTX structure.

=head1 SYNOPSIS

  use Crypt::OpenSSL::Bignum::CTX;
  my $bn_ctx = Crypt::OpenSSL::Bignum::CTX->new();

=head1 DESCRIPTION

See the man page for Crypt::OpenSSL::Bignum.

=head1 AUTHOR

Ian Robertson, iroberts@cpan.org

=head1 SEE ALSO

L<perl>, L<Crypt::OpenSSL::Bignum>, L<BN_CTX_new(3ssl)>

=cut