line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package ZMQ::Raw::Z85; |
2
|
|
|
|
|
|
|
$ZMQ::Raw::Z85::VERSION = '0.39'; |
3
|
14
|
|
|
14
|
|
93
|
use strict; |
|
14
|
|
|
|
|
25
|
|
|
14
|
|
|
|
|
398
|
|
4
|
14
|
|
|
14
|
|
66
|
use warnings; |
|
14
|
|
|
|
|
27
|
|
|
14
|
|
|
|
|
303
|
|
5
|
14
|
|
|
14
|
|
66
|
use ZMQ::Raw; |
|
14
|
|
|
|
|
22
|
|
|
14
|
|
|
|
|
492
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 NAME |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
ZMQ::Raw::Z85 - ZeroMQ Z85 methods |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 VERSION |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
version 0.39 |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 DESCRIPTION |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 SYNOPSIS |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 METHODS |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 encode( $decoded ) |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Encode C<$decoded>. The length of C<$decoded> shall be divisible by 4. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 decode( $encoded ) |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Decode C<$encoded>. The length of C<$encoded> shall be divisible by 5. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 AUTHOR |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Jacques Germishuys |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Copyright 2017 Jacques Germishuys. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
38
|
|
|
|
|
|
|
under the terms of either: the GNU General Public License as published |
39
|
|
|
|
|
|
|
by the Free Software Foundation; or the Artistic License. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
See http://dev.perl.org/licenses/ for more information. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=cut |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
1; # End of ZMQ::Raw::Z85 |