| Crates.io | dax_service_forgejo |
| lib.rs | dax_service_forgejo |
| version | 0.1.0 |
| created_at | 2024-06-04 22:43:49.142114+00 |
| updated_at | 2024-06-04 22:43:49.142114+00 |
| description | Forgejo service definition for dax-rs |
| homepage | https://keyoxide.org |
| repository | https://codeberg.org/keyoxide/dax-rs |
| max_upload_size | |
| id | 1262169 |
| size | 8,234 |
Decentralized online identity verification for Rust
To verify an online identity:
use dax::{
claim::Claim, proof::Proof, verify_claim
};
fn main() {
// Prepare
let claim = Claim::new("http://localhost/user/repo");
let proofs = vec![Proof::new(
"openpgp4fpr:1234567890123456789012345678901234567890",
)];
// Verify the claim
let result = verify_claim(&claim, &proofs);
}
This repo is compliant with version 3.0 of the REUSE Specification.