summaryrefslogtreecommitdiff
path: root/lib/DeWeave/EDO.pm
blob: 29a9cee20143c08d35eca085902d5c4814b57ea2 (plain)
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
package DeWeave::EDO; 
use Moose;
use namespace::autoclean;
use MooseX::Types::Moose qw(Int Str Num);
use JSON::Any;
 
extends 'DeWeave::WBO';
 
has cyhpertext => (
    isa => Str,
    required => 1,
    is => 'ro',
);
 
has IV => (
    isa => Str,
    required => 1,
    is => 'ro',
);
 
has hmac => (
    isa => Str,
    required => 1,
    is => 'ro',
);
 
1;