summaryrefslogtreecommitdiff
path: root/lib/DeWeave/EDO.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/DeWeave/EDO.pm')
-rw-r--r--lib/DeWeave/EDO.pm27
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/DeWeave/EDO.pm b/lib/DeWeave/EDO.pm
new file mode 100644
index 0000000..29a9cee
--- /dev/null
+++ b/lib/DeWeave/EDO.pm
@@ -0,0 +1,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;