jaguar_jwt 0.3.2
jaguar_jwt: ^0.3.2 copied to clipboard
JWT utilities for Jaguar.dart
jaguar_jwt #
JWT utilities for Dart and Jaguar.dart
Usage #
Issuing JWT token #
final key = 'dfsdffasdfdgdfgdfg456456456';
final claimSet = new JwtClaim(
subject: 'kleak',
issuer: 'teja',
audience: <String>['example.com', 'hello.com'],
payload: {'k': 'v'});
String token = issueJwtHS256(claimSet, key);
print(token);
Decoding JWT token #
final JwtClaim decClaimSet = verifyJwtHS256Signature(token, key);
print(decClaimSet.toJson());
Validating JWT token #
decClaimSet.validate(issuer: 'teja', audience: 'hello.com');
Configuration #
JwtClaimSet #
JwtClaimSet is the model to holds JWT claim set information.
To issue a JWT token, it needs:
issuer
Authority issuing the token. This will be used during authorization to verify that expected issuer has issued the token. Fills theissfield of the JWT token.Subject
Subject of the JWT token. Usually stores the user ID of the user to which the token is issued. Fills thesubfield of the JWT token.audience
List of audience that accept this token. This will be used during authorization to verify that JWT token has expected audience for the service. Fillsaudfield in JWT token.expiry
Time at which the token expires. Fillsexpfield in JWT token.jwtId
Unique identifier across services that identifies the token. Fillsjtifield in JWT token.