line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Crypt::Perl::ASN1; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
#Wrappers around basic methods to get exceptions thrown on errors. |
4
|
|
|
|
|
|
|
|
5
|
14
|
|
|
14
|
|
87
|
use strict; |
|
14
|
|
|
|
|
25
|
|
|
14
|
|
|
|
|
364
|
|
6
|
14
|
|
|
14
|
|
60
|
use warnings; |
|
14
|
|
|
|
|
24
|
|
|
14
|
|
|
|
|
321
|
|
7
|
|
|
|
|
|
|
|
8
|
14
|
|
|
14
|
|
392
|
use parent 'Convert::ASN1'; |
|
14
|
|
|
|
|
310
|
|
|
14
|
|
|
|
|
73
|
|
9
|
|
|
|
|
|
|
|
10
|
14
|
|
|
14
|
|
445309
|
use Crypt::Perl::BigInt (); |
|
14
|
|
|
|
|
36
|
|
|
14
|
|
|
|
|
236
|
|
11
|
14
|
|
|
14
|
|
70
|
use Crypt::Perl::X (); |
|
14
|
|
|
|
|
52
|
|
|
14
|
|
|
|
|
3945
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub new { |
14
|
2401
|
|
|
2401
|
1
|
8991
|
my ($class, @opts) = @_; |
15
|
|
|
|
|
|
|
|
16
|
2401
|
|
|
|
|
34807
|
return $class->SUPER::new( |
17
|
|
|
|
|
|
|
encode => { bigint => 'Crypt::Perl::BigInt' }, |
18
|
|
|
|
|
|
|
decode => { bigint => 'Crypt::Perl::BigInt' }, |
19
|
|
|
|
|
|
|
@opts, |
20
|
|
|
|
|
|
|
); |
21
|
|
|
|
|
|
|
} |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
sub prepare { |
24
|
2401
|
|
|
2401
|
1
|
127204
|
my ( $self, $asn1_r ) = ( $_[0], \$_[1] ); |
25
|
|
|
|
|
|
|
|
26
|
2401
|
|
|
|
|
12181
|
my $ret = $self->SUPER::prepare($$asn1_r); |
27
|
|
|
|
|
|
|
|
28
|
2401
|
50
|
|
|
|
24203255
|
if ( !defined $ret ) { |
29
|
0
|
|
|
|
|
0
|
die Crypt::Perl::X::create('ASN1::Prepare', $$asn1_r, $self->error()); |
30
|
|
|
|
|
|
|
} |
31
|
|
|
|
|
|
|
|
32
|
2401
|
|
|
|
|
12129
|
return $ret; |
33
|
|
|
|
|
|
|
} |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
sub find { |
36
|
1914
|
|
|
1914
|
1
|
6378
|
my ( $self, $macro ) = @_; |
37
|
|
|
|
|
|
|
|
38
|
1914
|
|
33
|
|
|
9357
|
return $self->SUPER::find($macro) || do { |
39
|
|
|
|
|
|
|
die Crypt::Perl::X::create('ASN1::Find', $macro, $self->error()); |
40
|
|
|
|
|
|
|
}; |
41
|
|
|
|
|
|
|
} |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
sub encode { |
44
|
1292
|
|
|
1292
|
1
|
465302
|
my ($self) = shift; |
45
|
|
|
|
|
|
|
|
46
|
1292
|
|
33
|
|
|
6552
|
return $self->SUPER::encode(@_) || do { |
47
|
|
|
|
|
|
|
die Crypt::Perl::X::create('ASN1::Encode', \@_, $self->error()); |
48
|
|
|
|
|
|
|
}; |
49
|
|
|
|
|
|
|
} |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
sub decode { |
52
|
1116
|
|
|
1116
|
1
|
3511
|
my ($self) = shift; |
53
|
|
|
|
|
|
|
|
54
|
1116
|
|
66
|
|
|
5859
|
return $self->SUPER::decode($_[0]) || do { |
55
|
|
|
|
|
|
|
die Crypt::Perl::X::create('ASN1::Decode', $_[0], $self->error()); |
56
|
|
|
|
|
|
|
}; |
57
|
|
|
|
|
|
|
} |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
my $_asn1_null; |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
sub NULL { |
62
|
14
|
|
66
|
14
|
0
|
485
|
return $_asn1_null ||= Crypt::Perl::ASN1->new()->prepare('n NULL')->encode( { n => 0 } ); |
63
|
|
|
|
|
|
|
} |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
1; |