File: 12der.t

package info (click to toggle)
libconvert-asn1-perl 0.34-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 468 kB
  • sloc: perl: 4,526; yacc: 544; makefile: 2
file content (59 lines) | stat: -rw-r--r-- 1,393 bytes parent folder | download | duplicates (2)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/local/bin/perl

#
# Test the use of sets
#

use Convert::ASN1;
BEGIN { require './t/funcs.pl' }

print "1..18\n";


btest 1, $asn  = Convert::ASN1->new(encoding => 'DER') or warn $asn->error;
btest 2, $asn->prepare(q(
  SET {
    integer INTEGER,
    str STRING,
    bool BOOLEAN
  }
)) or warn $asn->error;

my $result = pack("C*", 0x31, 0x10, 0x01, 0x01, 0x00, 0x02, 0x01, 0x09, 
			0x04, 0x08, 0x41, 0x20, 0x73, 0x74, 0x72, 0x69,
			0x6E, 0x67
);
stest 3, $result, $asn->encode(integer => 9, bool => 0, str => "A string") or warn $asn->error;

btest 4, $ret = $asn->decode($result) or warn $asn->error;
ntest 5, 9, $ret->{integer};
ntest 6, 0, $ret->{bool};
stest 7, "A string", $ret->{str};

btest 8, $asn  = Convert::ASN1->new or warn $asn->error;
btest 9, $asn->prepare(q(
  SET {
    bool BOOLEAN,
    str STRING,
    integer INTEGER
  }
)) or warn $asn->error;

btest 10, $ret = $asn->decode($result) or warn $asn->error;
ntest 11, 9, $ret->{integer};
ntest 12, 0, $ret->{bool};
stest 13, "A string", $ret->{str};

btest 14, $asn->prepare(q(
  SEQUENCE {
    true BOOLEAN,
    false BOOLEAN
  }
)) or warn $asn->error;

$result = pack("C*", 0x30, 0x06, 0x01, 0x01, 0xff, 0x01, 0x01, 0x00);
stest 15, $result, $asn->encode(true => 99, false => 0) or warn $asn->error;

btest 16, $ret = $asn->decode($result) or warn $asn->error;
btest 17, $ret->{true};
btest 18, !$ret->{false};