Frank JWT Build Status

Implementation of JSON Web Tokens in Rust. It supports HS256, 384 and 512 signature algorithms.

Usage

Put this in your Cargo.toml:

toml [dependencies.jwt] git = "https://github.com/GildedHonour/frank_jwt" or

toml [dependencies] frank_jwt = "*"

And this in your crate root:

```rust extern crate jwt;

use jwt::Header; use jwt::Payload; use jwt::encode; use jwt::decode; use jwt::Algorithm; ```

Example

```rust let mut payload = Payload::new(); payload.insert("key1".tostring(), "val1".tostring()); payload.insert("key2".tostring(), "val2".tostring()); payload.insert("key3".tostring(), "val3".tostring());

let secret = "secret123"; let header = Header::new(Algorithm::HS256);

let jwt = encode(header, secret.to_string(), payload.clone()); ```

License

Apache 2.0

Tests

shell cargo test