Implementation of JSON Web Tokens in Rust.
- 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
Put this into your Cargo.toml
:
[dependencies]
frank_jwt = "<current version of frank_jwt>"
And this in your crate root:
extern crate frank_jwt;
extern crate #[macro_use] serde_json;
use frank_jwt::{Algorithm, encode, decode};
//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::current_dir().unwrap();
keypath.push("some_folder");
keypath.push("my_rsa_2048_key.pem");
let jwt = encode(&header, &keypath.to_path_buf(), &payload, Algorithm::RS256);
let (header, payload) = decode(&jwt, &keypath.to_path_buf(), Algorithm::RS256);
Apache 2.0
cargo test
I'm a freelance developer and looking forward to new challenges.
me@gildedhonour.com | gildedhonour.com