JSON::JWT - JSON Web Token (JWT) implementation for Raku
use JSON::JWT;
my $jwt = JSON::JWT.encode($data, :alg<none>); # no encryption
my $jwt = JSON::JWT.encode($data, :alg<HS256>, :$secret); # HS256 encryption
my $jwt = JSON::JWT.encode($data, :alg<RS256>, :$pem); # RS256 encryption
my $data = JSON::JWT.decode($jwt, :alg<none>); # no encryption
my $data = JSON::JWT.decode($jwt, :alg<HS256>, :$secret); # HS256 encryption
my $data = JSON::JWT.decode($jwt, :alg<RS256>, :$pem); # RS256 encryption
JSON::JWT provides a class with an implementation of the JSON Web Token (JWT) standard, with support for HS256
and RS256
encryption, or no encryption.
Andrew Egeler
Source can be located at: https://github.com/raku-community-modules/JSON-JWT . Comments and Pull Requests are welcome.
Copyright 2017 - 2018 Andrew Egeler
Copyright 2019 - 2022 Raku Community
All files in this repository are licensed under the terms of Create Commons License; for details please see the LICENSE file