Egg::Model::Session::Store::Base64 - Encode processing of session data by Base64.


Egg-Plugin-SessionKit documentation  | view source Contained in the Egg-Plugin-SessionKit distribution.

Index


NAME

Top

Egg::Model::Session::Store::Base64 - Encode processing of session data by Base64.

SYNOPSIS

Top

  package MyApp::Model::Sesion::MySession;

  __PACKAGE__->startup(
   .....
   Store::Base64
   );

DESCRIPTION

Top

It is a component to use it together with Base system component that cannot preserve the session data as it is.

To use it, 'Store::Base64' is added to 'startup'.

  __PACKAGE__->startup(
   Base::DBI
   Store::Base64
   );

METHODS

Top

store_encode

The result of passing the received session data through 'encode_base64' of MIME::Base64 is returned by the SCALAR reference.

store_decode

The result of passing the received Base64 encode ending data through 'decode_base64' of MIME::Base64 is returned.

SEE ALSO

Top

Egg::Release, Egg::Model::Session::Manager::TieHash, MIME::Base64, Storable,

AUTHOR

Top

Masatoshi Mizuno <lushe&64;cpan.org>

COPYRIGHT AND LICENSE

Top


Egg-Plugin-SessionKit documentation  | view source Contained in the Egg-Plugin-SessionKit distribution.