NAME
OIDC::Lite::Util::JWT - JSON Web Token
SYNOPSIS
TBD
DESCRIPTION
JSON Web Token utility class.
METHODS
header( $jwt )
Returns hash reference of JWT Header.
my $jwt = q{...}:
my $header = OIDC::Lite::Util::JWT::header($jwt);
payload( $jwt )
Returns hash reference of JWT Payload.
my $jwt = q{...}:
my $payload = OIDC::Lite::Util::JWT::payload($jwt);
AUTHOR
Ryo Ito <ritou.06@gmail.com>
COPYRIGHT AND LICENSE
Copyright (C) 2012 by Ryo Ito
LICENSE
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.8 or, at your option, any later version of Perl 5 you may have available.