summaryrefslogtreecommitdiffstats
path: root/lib/KiokuDB/Serializer/Crypt.pm
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-12-19 00:01:08 -0600
committerJesse Luehrs <doy@tozt.net>2010-12-19 00:01:08 -0600
commit09209c374fbfbc6b8185c01d407af2328bfe1285 (patch)
treea8a6a54791f245f8d7a4d4adba4c3c6457eb60c2 /lib/KiokuDB/Serializer/Crypt.pm
parent2accba2f3c6580d9ff4e681141d44ad59e3d62a8 (diff)
downloadkiokudb-serializer-crypt-09209c374fbfbc6b8185c01d407af2328bfe1285.tar.gz
kiokudb-serializer-crypt-09209c374fbfbc6b8185c01d407af2328bfe1285.zip
doc stubs
Diffstat (limited to 'lib/KiokuDB/Serializer/Crypt.pm')
-rw-r--r--lib/KiokuDB/Serializer/Crypt.pm51
1 files changed, 51 insertions, 0 deletions
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<bug-kiokudb-serializer-crypt at rt.cpan.org>, or browse to
+L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=KiokuDB-Serializer-Crypt>.
+
+=head1 SEE ALSO
+
+L<KiokuDB>
+
+L<Crypt::Util>
+
+=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<http://annocpan.org/dist/KiokuDB-Serializer-Crypt>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/KiokuDB-Serializer-Crypt>
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=KiokuDB-Serializer-Crypt>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/KiokuDB-Serializer-Crypt>
+
+=back
+
+=cut
+
1;