p5-JSON-WebToken icon indicating copy to clipboard operation
p5-JSON-WebToken copied to clipboard

JSON Web Token (JWT) implementation for Perl

Results 10 p5-JSON-WebToken issues
Sort by recently updated
recently updated
newest added

Hi, I had added ppc64le(Linux on Power) support on travis-ci in the branch and looks like its been successfully added. I have added and tested with the latest perl version...

Hi, I recommend to replace the JSON package with thread-safe implementation. I've already tested it with JSON::MaybeXS and it worked like a charm. best regards René

Getting errors like: Can't locate t/Util.pm in `@INC` The easiest fix is to just do `use lib '.';` at the top of tests that fail. ``` 23:08:32 13968 ERROR [463]:...

Hello, Is there support here for JWS JSON serialization? https://tools.ietf.org/html/rfc7515#section-3.2

It appears that the `cpanfile` is missing the `Crypt::OpenSSL::RSA` dependency that is used in `JSON::WebToken::Crypt::RSA`. I know you can use this module with just `Digest::SHA` if you only use `HMAC`,...

Hey Are you planning to validate expiration? In fact, not sure how it works (didn't read the RFC yet). Thanks

It is my understanding that one should be able to decode the token without needing the secret, and use the secret only for verification of the contents thereafter. Unless I'm...

From perl v5.18, the key order of hash is randomized and two JSON encoded strings may be different even if they come from same structure of hash. Encoding to JWT...

I installed JSON::WebToken 0.08, and then I got the following error message. ``` Can't locate Crypt/OpenSSL/RSA.pm in @INC (you may need to install the Crypt::OpenSSL::RSA module) at /home/ichinose/.plenv/versions/5.18.2/lib/perl5/site_p rl/5.18.2/JSON/WebToken/Crypt/RSA.pm line...

Hello xaicron. I'm implementing currently OpenID google login and decided to rework your module a bit. I've added additional functionality to work with JWK sets. Example of such keys you...