This file is indexed.

/usr/lib/perl5/Crypt/OpenSSL/Bignum/CTX.pm is in libcrypt-openssl-bignum-perl 0.04-4build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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