The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

Net::OpenID::Connect::IDToken - id_token generation / verification module

SYNOPSIS

use Net::OpenID::Connect::IDToken qw/encode_id_token decode_id_token/;
my $claims = +{
jti => 1,
iat => 1234567890,
exp => 1234567890,
};
my $key = ... # HMAC shared secret or RSA private key or ...
my $id_token;
# encode id_token
$id_token = encode_id_token($claims, $key, "HS256");
# encode id_token with at_hash and/or c_hash
$id_token = encode_id_token($claims, $key, "HS256", +{
token => "525180df1f951aada4e7109c9b0515eb",
code => "f9101d5dd626804e478da1110619ea35",
});
my $decoded_claims;
# decode id_token without JWT verification
$decoded_claims = decode_id_token($id_token);
# decode id_token with JWT verification
$decoded_claims = decode_id_token($id_token, $key);
# decode id_token with JWT, at_hash and/or c_hash verification
$decoded_claims = decode_id_token($id_token, $key, +{
token => "525180df1f951aada4e7109c9b0515eb",
code => "f9101d5dd626804e478da1110619ea35",
});

ERRORS

Exception will be thrown with error codes below when error occurs. You can handle these exceptions by...

eval { decode_id_token(...) };
if ( my $e = $@ ) {
if ( $e->code eq ERROR_IDTOKEN_TOKEN_HASH_NOT_FOUND ) {
# error handling code herer
}
}

Other errors like 'id_token itself is not valid JWT' might come from underlying JSON::WebToken.

ERROR_IDTOKEN_INVALID_ALGORITHM

Thrown when invalid algorithm specified.

ERROR_IDTOKEN_TOKEN_HASH_NOT_FOUND

Thrown when tried to verify at_hash with token but at_hash not found.

ERROR_IDTOKEN_TOKEN_HASH_INVALID

Thrown when tried to verify at_hash with token but at_hash was invalid.

ERROR_IDTOKEN_CODE_HASH_NOT_FOUND

Thrown when tried to verify c_hash with token but at_hash not found.

ERROR_IDTOKEN_CODE_HASH_INVALID

Thrown when tried to verify c_hash with token but at_hash was invalid.

DESCRIPTION

Net::OpenID::Connect::IDToken is a module to generate/verify IDToken of OpenID Connect. See: http://openid.net/connect/

THIS IS A DEVELOPMENT RELEASE. API MAY CHANGE WITHOUT NOTICE.

SEE ALSO

http://search.cpan.org/~xaicron/JSON-WebToken-0.07/

LICENSE

Copyright (C) zentooo

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

zentooo <zentooo@gmail.com<gt>