From 09209c374fbfbc6b8185c01d407af2328bfe1285 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 19 Dec 2010 00:01:08 -0600 Subject: doc stubs --- lib/KiokuDB/Serializer/Crypt.pm | 51 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) (limited to 'lib/KiokuDB/Serializer/Crypt.pm') diff --git a/lib/KiokuDB/Serializer/Crypt.pm b/lib/KiokuDB/Serializer/Crypt.pm index fb90952..2aba3cc 100644 --- a/lib/KiokuDB/Serializer/Crypt.pm +++ b/lib/KiokuDB/Serializer/Crypt.pm @@ -1,9 +1,16 @@ package KiokuDB::Serializer::Crypt; use Moose::Role; use namespace::autoclean; +# ABSTRACT: encrypt data stored in kiokudb use Crypt::Util; +=head1 SYNOPSIS + +=head1 DESCRIPTION + +=cut + has crypt_key => ( is => 'ro', isa => 'Str', @@ -56,4 +63,48 @@ around deserialize => sub { return $self->$orig($self->decrypt_string($collapsed), @args); }; +=head1 BUGS + +No known bugs. + +Please report any bugs through RT: email +C, or browse to +L. + +=head1 SEE ALSO + +L + +L + +=head1 SUPPORT + +You can find this documentation for this module with the perldoc command. + + perldoc KiokuDB::Serializer::Crypt + +You can also look for information at: + +=over 4 + +=item * AnnoCPAN: Annotated CPAN documentation + +L + +=item * CPAN Ratings + +L + +=item * RT: CPAN's request tracker + +L + +=item * Search CPAN + +L + +=back + +=cut + 1; -- cgit v1.2.3-54-g00ecf