New
Unclaimed project
Are you a maintainer of JSONWebToken.swift? Claim this project to take control of your public changelog and roadmap.
Changelog
Swift implementation of JSON Web Token (JWT).
Last updated almost 5 years ago
This release adds support for Swift 3.0.
Algorithms now take Data instead of a String. This improves the API
allowing you to use keys that cannot be serialised as a String.
You can easily convert a String to Data such as in the following example:
.hs256("secret".data(using: .utf8)!)