pkit_auth_credential — Verifies login credentials and returns session key
sub pkit_auth_credential { my ($model) = @_; # in this example, login and passwd are the names of the credential fields my $login = $model->input('login'); my $passwd = $model->input('passwd'); # create a session key # your code here......... return $ses_key; }
Verifies the user-supplied credentials and return a session key. The session key is a string that is stored on the user's computer using cookies. Often you'll use the user ID and a MD5 hash of a a secret key, user ID, password.
Note that the string returned should not contain any commas, spaces, or semi-colons.