Frank JWT Build Status crates.io

Implementation of JSON Web Tokens in Rust.

Algorithms and features supported

Usage

Put this into your Cargo.toml:

toml [dependencies] frank_jwt = "<current version of frank_jwt>"

And this in your crate root:

```rust extern crate frank_jwt;

[macro_use]

serdejson; use frankjwt::{Algorithm, encode, decode}; ```

Example

```rust //HS256 let mut payload = json!({ "key1" : "val1", "key2" : "val2" }); let mut header = json!({ }); let secret = "secret123";

let jwt = encode(&header, secret.to_string(), &payload, Algorithm::HS256);

//RS256 use std::env;

let mut payload = json!({ "key1" : "val1", "key2" : "val2" }); let mut header = json!({ });

let mut keypath = env::currentdir().unwrap(); keypath.push("somefolder"); keypath.push("myrsa2048_key.pem");

let jwt = encode(&header, &keypath.topathbuf(), &payload, Algorithm::RS256);

let (header, payload) = decode(&jwt, &keypath.topathbuf(), Algorithm::RS256); ```

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 | gildedhonour.com