Implementation of JSON Web Tokens in Rust. Honest about its feature set and actively maintained. Support for all claim checks and JWEs is a goal. Fork of frank_jwt.
Put this into your Cargo.toml
:
toml
[dependencies]
honest_jwt = "0.1"
And this in your crate root:
```rust extern crate honestjwt; extern crate #[macrouse] serde_json;
use honest_jwt::{Algorithm, encode, decode}; ```
```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("myrsa2048key.pem"); let jwt = encode(&header, &keypath.topathbuf(), &payload, Algorithm::RS256); let (header, payload) = decode(&jwt, &keypath.topath_buf(), Algorithm::RS256); ```
Original project code (frank_jwt) was licensed under the Apache 2.0 license. New code is being written under the LGPL 3.0. Eventually all original code will be re-rewitten and entire project will be LGPL'd.