just_jwt 1.3.1
just_jwt: ^1.3.1 copied to clipboard
A JWT library for Dart.
Changelog #
1.0.0 #
- Initial version
1.1.0 #
- Signer/Verifier works with List<int> instead of String.
1.1.1 #
- Works with non-padded BASE64 strings.
1.2.1 #
- Improved Signers/Verifiers composition.
- New
createJwaRS256Verifierfunction which creates a RSA256 verifier from encoded modulus and encoded exponent as described in RFC 7518.
1.3.0 #
- Changed JWT's header type from Map<String, String> to Map<String, dynamic>.
- TokenVerifier and TokenSigner returns Future now.
1.3.1 #
- Errors contain an instance of ToVerify / ToSign class.