2个版本
0.1.1 | 2023年1月25日 |
---|---|
0.1.0 | 2022年11月2日 |
在 加密学 中排名第1856
5KB
64 行
boiler-jwt
JWT令牌签名和解密的样板代码。
添加到Cargo.toml
[dependencies]
boiler-jwt = "0.1.0"
JWT签名和验证示例
use boiler_jwt::{to_token, from_token, to_value, from_value};
let app_secret = "my-secret";
let user_id = 1;
// create a jwt with a BTreeMap<String, Value> containing an "id" field
let jwt = to_token(app_secret, [
("id".into(), to_value(user_id).unwrap())
].into()).unwrap();
// convert back to a BTreeMap<String, Value>
let mut claims = from_token(app_secret, &jwt).unwrap();
assert_eq!(1, from_value::<i32>(claims.remove("id").unwrap()).unwrap());
密码哈希和验证示例
use boiler_jwt::{to_hash, verify};
let pass = "foo";
let hash = to_hash(pass);
assert!(verify(pass, &hash));
assert!(!verify("bar", &hash));
依赖项
~1.6–2.5MB
~53K SLoC