Frank JWT Build Status crates.io

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

Usage

Put this in your Cargo.toml:

toml [dependencies] frank_jwt = "2.2.1"

And this in your crate root:

```rust extern crate frank_jwt;

use frank_jwt::{Header, Payload, Algorithm, encode, decode}; ```

Example

```rust //HS256 let mut payload = Payload::new(); payload.insert("key1".tostring(), "val1".tostring()); payload.insert("key2".tostring(), "val2".tostring()); let header = Header::new(Algorithm::HS256); let secret = "secret123";

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

//RS256 use std::env;

let mut payload = Payload::new(); payload.insert("key1".tostring(), "val1".tostring()); payload.insert("key2".tostring(), "val2".tostring()); let header = Header::new(Algorithm::RS256);

let mut path = env::currentdir().unwrap(); path.push("somefolder"); path.push("myrsa2048key.pem"); let keypath = path.tostr().unwrap().tostring();

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

License

Apache 2.0

Tests

shell cargo test

I'm available for hire

I'm a freelance developer and looking forward to new challenges.

me@gildedhonour.com | www.gildedhonour.com