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;