12个版本 (7个重大更新)
0.8.0 | 2023年10月17日 |
---|---|
0.7.1 | 2022年5月22日 |
0.7.0 | 2022年4月21日 |
0.6.1 | 2021年2月24日 |
0.1.1 | 2016年12月25日 |
#120 in 认证
178,054 每月下载量
用于 95 个crates (12直接使用)
9KB
165 行
rust-jwt [文档]
非常简单的JWT生成库,提供了一个可以最终化的Jwt结构体,可以生成编码和签名的String表示。
泛型覆盖serde::ser::Serialize特质。
用法
#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate smpl_jwt;
use serde::Serialize;
use smpl_jwt::{Jwt, RSAKey};
fn main() {
#[derive(Serialize)]
struct ExampleStruct {
field: String
}
let rsa_key = match RSAKey::from_pem("random_rsa_for_testing") {
Ok(x) => x,
Err(e) => panic!("{}", e)
};
let jwt = Jwt::new(ExampleStruct{field: String::from("test")},
rsa_key,
None);
println!("{}", jwt);
}
依赖
~3–5MB
~107K SLoC