1 个不稳定版本
0.1.0 | 2024年6月4日 |
---|
#10 in #声明
在 2 个 crate 中使用(通过 dax_service_forgejo)
12KB
177 行代码(不含注释)
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 版本。REUSE Specification.
依赖
~2.4–3.5MB
~96K SLoC