Masatoshi Mizuno > Egg-Plugin-SessionKit > Egg::Model::Session::ID::MD5

Download:
Egg-Plugin-SessionKit-3.05.tar.gz

Dependencies

Annotate this POD

CPAN RT

Open  0
Report a bug
Module Version: 0.01   Source  

NAME ^

Egg::Model::Session::ID::MD5 - MD5 is used for session ID.

SYNOPSIS ^

  package MyApp::Model::Sesion;
  
  __PACKAGE__->startup(
   .....
   ID::MD5
   );

DESCRIPTION ^

It is a component module to use the HEX value obtained with Digest::MD5 for session ID.

'id_length' is accepted to the configuration.

  __PACKAGE__->config(
    id_length => 32,
    );

It becomes 32 at the unspecification.

METHODS ^

make_session_id

The value obtained by 'md5_hex' function of Digest::MD5 is returned.

valid_session_id (SESSION_ID)

The format of SESSION_ID is checked and the result is returned.

SEE ALSO

Egg::Release, Egg::Model::Session::Manager::TieHash, Digest::MD5, Time::HiRes,

AUTHOR ^

Masatoshi Mizuno <lushe@cpan.org>

COPYRIGHT AND LICENSE ^

Copyright (C) 2008 Bee Flag, Corp. <http://egg.bomcity.com/>, All Rights Reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.