dart_jsonwebtoken 2.3.2
dart_jsonwebtoken: ^2.3.2 copied to clipboard
A dart implementation of the famous javascript library 'jsonwebtoken' (JWT).
2.3.2 #
- Some badges on
README.md(Thanks to https://github.com/bruno-garcia/badges.bar)
2.3.1 #
- Fix the
pointycastledependency,v3.1.3is incompatible with flutter web (dart2js) (https://github.com/jonasroussel/dart_jsonwebtoken/issues/14)
2.3.0 #
- Adding
headerin JWT class (you can now set your custom header)
2.2.0 #
- Fixing EdDSA incompatibility's with flutter web (https://github.com/jonasroussel/dart_jsonwebtoken/issues/11)
- Dependencies:
ed25519_edwardshave been removed,convert&collectionhave been added
2.1.1 #
- Fixing
_pkcs8ECPublicKeyto work with pointycastle 3.0.1
2.1.0 #
- When an undefined error occur
JWTUndefinedErroris thrown containing the original error inerrorproperty (https://github.com/jonasroussel/dart_jsonwebtoken/issues/9) - BREAKING CHANGE:
jwt.verifyno longer supportthrowUndefinedErrorsparameter
2.0.1 #
- Fixing
JWT.signto includeiat& other attributes when payload is an empty Map
2.0.0 #
- Stable release for null safety
2.0.0-nullsafety.2 #
- New EdDSA Algorithm (EdDSA)
- EdDSAPrivateKey and EdDSAPublicKey, two new keys for EdDSA algorithm
ed25519_edwardspackage has been added
2.0.0-nullsafety.1 #
- Null safety migration of this package
1.6.2 #
- Adding
analysis_options.yamlto work with pedantic during development
1.6.1 #
- Formating for 'static analysis'
1.6.0 #
- New ECDSA Algorithm (EC256, EC384, EC512)
- ECPrivateKey and ECPublicKey, two new keys for ECDSA algorithm
- PrivateKey is renamed in RSAPrivateKey
- PublicKey is renamed in RSAPublicKey
- Optimization of private & public keys parsing
rsa_pkcs&cryptographyhave been removed
1.5.0 #
- Debuging
_TypeError issue on sign method(#4) - Implementing
toStringin theJWTErrorclass
1.4.1 #
- Formating for 'static analysis'
1.4.0 #
- Implementing
throwUndefinedErrorsoption in theJWT.verifymethod
1.3.1 #
- Formating for 'static analysis'
1.3.0 #
- Adding checks in
JWT.verifyfunction foriss, sub, aud, iat, jti
1.2.1 #
- Formating for 'static analysis'
1.2.0 #
- Payload is now required
- Payload is now dynamic and not restricted to an object
- Dependencies updated
1.1.0 #
- New algorithms
1.0.3 #
- Formating for 'static analysis'
1.0.2 #
- Docs & examples
1.0.1 #
- More details on exceptions
- New examples
1.0.0 #
- New RSA Algorithm (RS256)
- Keys a now using an abstract class 'Key' instead of a string
- SecretKey: for HMAC (HS256)
- PrivateKey & PublicKey: for RSA (RS256)
0.2.1 #
- Formatting
0.2.0 #
- Better documentations
0.1.0 #
- First version with every based features