Releases: vapor/jwt-kit
Releases · vapor/jwt-kit
Remove OpenSSL
BoolClaim handles strings
BoolClaim wasn't properly handling "true" and "false" as strings.
Apple/Google identity tokens
Adds commonly used AppleIdentityToken
and GoogleIdentityToken
structs. This includes code necessary to validate the apple/google provided identity data against their respective JWKS elements.
This patch also restructures the project a bit to move classes into their own files with hierarchical folders to make it easier to find the items you're looking for.
JWKS.find
Fix Payload Verification
JWT verification using JWTSigner
and JWTSigners
now correctly invokes JWTPayload
's optional verify
method. (#6)
JWTKit 4.0.0 Beta 2.1
- Replaced all
fatalError
s with Swift errors.
JWTKit 4.0.0 Beta 2
- Separated from vapor/jwt into new repo
- Removed
JWT
type and split functionality intoJWTSigner
andJWTSigners
- New internal
JWTParser
andJWTSerializer
types to reduce code dupe