Crates.io | small_jwt |
lib.rs | small_jwt |
version | 1.1.0 |
created_at | 2024-12-11 12:26:05.589829+00 |
updated_at | 2024-12-12 11:05:18.937449+00 |
description | Simple and small JWT libary |
homepage | |
repository | https://gitlab.com/h45h/small_jwt |
max_upload_size | |
id | 1480047 |
size | 24,486 |
Simple and small JWT library for rust.
This library is not ready for any usage.
I write it for myself and if you find out that X
from RFC not implemented it's okay.
#[derive(Debug, serde::Serialize, serde::Deserialize)]
pub struct Claims {
pub user: String,
pub age: u16,
pub is_admin: bool,
}
const SECRET_KEY: &[u8] = b"my_super_secret_key";
fn main() {
let header = small_jwt::Header::default();
let claims = Claims {
user: String::from("username"),
age: 128,
is_admin: true,
};
let token = small_jwt::encode(&header, &claims, SECRET_KEY);
println!("enoded key: {:?}", token);
let decoded = small_jwt::decode::<Claims>(&token.unwrap(), SECRET_KEY);
println!("decoded payload: {:?}", decoded);
}
Feel free to open issues, send PR, etc.