File: CTX.pm

package info (click to toggle)
libcrypt-openssl-bignum-perl 0.04-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 100 kB
  • ctags: 7
  • sloc: perl: 127; makefile: 15
file content (46 lines) | stat: -rw-r--r-- 748 bytes parent folder | download | duplicates (5)
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
42
43
44
45
46
package Crypt::OpenSSL::Bignum::CTX;

use 5.005;
use strict;
use Carp;

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

require DynaLoader;

@ISA = qw(DynaLoader);

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

sub DESTROY
{
    shift->_free_BN_CTX();
}

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