summaryrefslogtreecommitdiff
path: root/lib/DeWeave/Crypto/KeyBundle.pm
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2011-03-25 21:43:42 +0000
committerdakkar <dakkar@thenautilus.net>2011-03-25 21:43:42 +0000
commit75aa29074f273164a8029d2fd8c963f8de5aea49 (patch)
tree7dca22b15aa45172a36c3bf83035bb610e9ff109 /lib/DeWeave/Crypto/KeyBundle.pm
parentbroken first stab (diff)
downloadDeWeave-75aa29074f273164a8029d2fd8c963f8de5aea49.tar.gz
DeWeave-75aa29074f273164a8029d2fd8c963f8de5aea49.tar.bz2
DeWeave-75aa29074f273164a8029d2fd8c963f8de5aea49.zip
it might even complie
Diffstat (limited to 'lib/DeWeave/Crypto/KeyBundle.pm')
-rw-r--r--lib/DeWeave/Crypto/KeyBundle.pm15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/DeWeave/Crypto/KeyBundle.pm b/lib/DeWeave/Crypto/KeyBundle.pm
new file mode 100644
index 0000000..aea89ec
--- /dev/null
+++ b/lib/DeWeave/Crypto/KeyBundle.pm
@@ -0,0 +1,15 @@
+package DeWeave::Crypto::KeyBundle;
+use Moose;
+use namespace::autoclean;
+use MooseX::Types::Moose qw(HashRef Str);
+use MooseX::Types::Structured qw(Tuple);
+
+has _keys => (
+ isa => Str,
+ init_arg => undef,
+ lazy_build => 1,
+);
+
+
+
+1;