1 个不稳定版本
0.1.0 | 2024年6月4日 |
---|
#34 在 #claim
19KB
220 行
dax-rs
为Rust提供的去中心化在线身份验证
示例
验证在线身份
use dax::{
claim::Claim, proof::Proof, verify_claim
};
fn main() {
// Prepare
let claim = Claim::new("https://127.0.0.1/user/repo");
let proofs = vec![Proof::new(
"openpgp4fpr:1234567890123456789012345678901234567890",
)];
// Verify the claim
let result = verify_claim(&claim, &proofs);
}
关于
此存储库符合REUSE规范版本3.0。
依赖项
~0.8–2.5MB
~54K SLoC