DOKK / manpages / debian 11 / libwebauth-perl / WebAuth::Token::Error.3pm.en
WebAuth::Token::Error(3pm) User Contributed Perl Documentation WebAuth::Token::Error(3pm)

WebAuth::Token::Error - WebAuth error tokens

    use WebAuth qw(WA_PEC_LOGIN_CANCELLED);
    my $token = WebAuth::Token::Error->new;
    $token->code (WA_PEC_LOGIN_CANCELLED);
    $token->message ('user canceled login');
    $token_>creation (time);
    print $token->encode ($keyring), "\n";

A WebAuth error token, returned by the WebKDC in response to a request token if some error occurred in processing that request.

Create a new, empty WebAuth::Token::Error. At least some attributes will have to be set using the accessor methods described below before the token can be used.

As with WebAuth module functions, failures are signaled by throwing WebAuth::Exception rather than by return status.

Generate the encoded and encrypted form of this token using the provided KEYRING. The encryption key used will be the one returned by the best_key() method of WebAuth::Keyring on that KEYRING.

Get or set the error code, which should be one of the WA_PEC_* error codes exported by the WebAuth module.
Get or set the error message.
Get or set the creation timestamp for this token in seconds since epoch. If not set, the encoded token will have a creation time set to the time of encoding.

Russ Allbery <eagle@eyrie.org>

WebAuth(3), WebAuth::Keyring(3), WebAuth::Token(3)

This module is part of WebAuth. The current version is available from <http://webauth.stanford.edu/>.

2020-12-21 perl v5.32.0