gitextract__aylbjyz/ ├── .codebeatignore ├── .gitignore ├── .jazzy.yaml ├── .spi.yml ├── .swift-version ├── .travis.yml ├── LICENSE ├── Package.swift ├── README.md ├── Sources/ │ └── SwiftJWT/ │ ├── BlueECDSA.swift │ ├── BlueHMAC.swift │ ├── BlueRSA.swift │ ├── Claims.swift │ ├── ClaimsExamples/ │ │ ├── ClaimsMicroProfile.swift │ │ ├── ClaimsOpenID.swift │ │ └── ClaimsStandardJWT.swift │ ├── Data+Base64URLEncoded.swift │ ├── Header.swift │ ├── JWT.swift │ ├── JWTDecoder.swift │ ├── JWTEncoder.swift │ ├── JWTError.swift │ ├── JWTSigner.swift │ ├── JWTVerifier.swift │ ├── NoneAlgorithm.swift │ ├── RSAKeyType.swift │ ├── SignerAlgorithm.swift │ ├── ValidateClaimsResult.swift │ └── VerifierAlgorithm.swift ├── SwiftJWT.podspec ├── Tests/ │ ├── LinuxMain.swift │ └── SwiftJWTTests/ │ ├── TestJWT.swift │ ├── cert_private_key │ ├── certificate │ ├── ec384_private_key │ ├── ec384_public_key │ ├── ec512_private_key │ ├── ec512_public_key │ ├── ecdsa_private_key │ ├── ecdsa_public_key │ ├── privateRSA.der │ ├── publicRSA.der │ ├── rsa_private_key │ └── rsa_public_key ├── docs/ │ ├── Classes/ │ │ ├── ClaimsMicroProfile.html │ │ ├── ClaimsOpenID.html │ │ ├── ClaimsStandardJWT.html │ │ ├── JWTDecoder.html │ │ └── JWTEncoder.html │ ├── Classes.html │ ├── Protocols/ │ │ └── Claims.html │ ├── Protocols.html │ ├── Structs/ │ │ ├── AddressClaim.html │ │ ├── Header.html │ │ ├── JWT.html │ │ ├── JWTError.html │ │ ├── JWTSigner.html │ │ ├── JWTVerifier.html │ │ └── ValidateClaimsResult.html │ ├── Structs.html │ ├── css/ │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets/ │ │ ├── SwiftJWT.docset/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── Resources/ │ │ │ ├── Documents/ │ │ │ │ ├── Classes/ │ │ │ │ │ ├── ClaimsMicroProfile.html │ │ │ │ │ ├── ClaimsOpenID.html │ │ │ │ │ ├── ClaimsStandardJWT.html │ │ │ │ │ ├── JWTDecoder.html │ │ │ │ │ └── JWTEncoder.html │ │ │ │ ├── Classes.html │ │ │ │ ├── Protocols/ │ │ │ │ │ └── Claims.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Structs/ │ │ │ │ │ ├── AddressClaim.html │ │ │ │ │ ├── Header.html │ │ │ │ │ ├── JWT.html │ │ │ │ │ ├── JWTError.html │ │ │ │ │ ├── JWTSigner.html │ │ │ │ │ ├── JWTVerifier.html │ │ │ │ │ └── ValidateClaimsResult.html │ │ │ │ ├── Structs.html │ │ │ │ ├── css/ │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── index.html │ │ │ │ ├── js/ │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ └── docSet.dsidx │ │ └── SwiftJWT.tgz │ ├── index.html │ ├── js/ │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json └── migration.md