Activator
view release on metacpan or search on metacpan
lib/Activator.pm view on Meta::CPAN
=item *
Come up with yet another standard so that crons, command line tools, and web site code all play nice together.
=item *
Come up with yet another mechanism for providing I18N that works across all aspects of a project.
=item *
Make sure you edit all the configurations necessary when creating a new dev environment
=back
Activator solves all of the above, and many more problems. Read the L<Activator::Tutorial> to find out how.
=head1 DEPENDANCIES
Data::Dumper
Scalar::Util
lib/Catalyst/Plugin/SecureCookies.pm view on Meta::CPAN
$c->request->exp_secure_cookies( $expiration );
$c->request->set_secure_cookie( 'my_cookie_name', $value );
my $secure_data = $c->request->get_secure_cookie('my_cookie_name');
=head1 DESCRIPTION
=head2 Overview
When HTTP cookies are used to store a user's state or identity it's
important that your application is able to distinguish legitimate
cookies from those that have been edited or created by a malicious
user.
This module creates a pair of cookies which encrypt a form so the
user cannot modify cookie contents.
=head2 Implementation
SecureCookies is implemented using Crypt::CBC and MIME::Base64
to encrypt and encode a urlencoded string representing a perl
hash. The encoded string is then hashed using Digest::SHA1 to
( run in 0.256 second using v1.01-cache-2.11-cpan-de7293f3b23 )