rustwt

Crates.iorustwt
lib.rsrustwt
version1.0.1
sourcesrc
created_at2017-08-31 20:16:35.964278
updated_at2017-09-02 16:49:27.32705
descriptionImplementation of JSON JWT
homepagehttps://github.com/Richterrettich/rustwt
repositoryhttps://github.com/Richterrettich/rustwt
max_upload_size
id30077
size61,549
(Richterrettich)

documentation

https://docs.rs/rustwt/

README

Rustwt

Build Status Documentation Status

This is a hard fork of https://github.com/GildedHonour/frank_jwt

Implementation of JSON Web Tokens in Rust.

Links

Algorithms and features supported

  • HS256
  • HS384
  • HS512
  • RS256
  • RS384
  • RS512
  • ES256
  • ES384
  • ES512
  • Sign
  • Verify
  • iss (issuer) check
  • sub (subject) check
  • aud (audience) check
  • exp (expiration time) check
  • nbf (not before time) check
  • iat (issued at) check
  • jti (JWT ID) check

Usage

Put this into your Cargo.toml:

[dependencies]
rustwt = "1.0.1"

License

Apache 2.0

Tests

cargo test
Commit count: 151

cargo fmt