dax_verifier 0.1.0

Identity verification logic for dax-rs
Documentation
  • Coverage
  • 50%
    1 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 2.77 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 272.66 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 20s Average build duration of successful builds.
  • all releases: 20s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • YarmoM

dax-rs

Decentralized online identity verification for Rust

Example

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);
}

About

This repo is compliant with version 3.0 of the REUSE Specification.