line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::ACME2::Challenge; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=encoding utf-8 |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
=head1 NAME |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
Net::ACME2::Challenge |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 DESCRIPTION |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
The ACME Challenge object. |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
(NB: The specification doesn’t seem to define this as a resource |
14
|
|
|
|
|
|
|
per se .. oversight?) |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Note that C challenges use L. |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=cut |
19
|
|
|
|
|
|
|
|
20
|
2
|
|
|
2
|
|
347
|
use strict; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
45
|
|
21
|
2
|
|
|
2
|
|
8
|
use warnings; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
56
|
|
22
|
|
|
|
|
|
|
|
23
|
2
|
|
|
2
|
|
9
|
use parent qw( Net::ACME2::AccessorBase ); |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
9
|
|
24
|
|
|
|
|
|
|
|
25
|
2
|
|
|
2
|
|
407
|
use Net::ACME2::X (); |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
58
|
|
26
|
|
|
|
|
|
|
|
27
|
2
|
|
|
|
|
123
|
use constant _ACCESSORS => ( |
28
|
|
|
|
|
|
|
'url', |
29
|
|
|
|
|
|
|
'type', |
30
|
|
|
|
|
|
|
'status', |
31
|
|
|
|
|
|
|
'validated', |
32
|
|
|
|
|
|
|
'error', |
33
|
|
|
|
|
|
|
#'keyAuthorization', |
34
|
2
|
|
|
2
|
|
10
|
); |
|
2
|
|
|
|
|
4
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 ACCESSORS |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
These provide text strings as defined in the ACME specification. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=over |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=item * B |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=item * B |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=item * B |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=item * B |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=item * B |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=back |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=cut |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
1; |