acdp 0.2.0

Rust client library for the Agent Context Distribution Protocol (ACDP v0.1.0)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod document;
pub mod key;
pub mod web;

pub use document::{AssertionMethodRef, DidDocument, VerificationMethod};
pub use key::{
    did_key_from_ed25519, did_key_from_p256_sec1, did_key_url, resolve_did_key,
    resolve_did_key_url, DidKeyMaterial,
};
pub use web::{authority_to_did_web, did_web_to_authority, did_web_to_url};

#[cfg(feature = "client")]
pub use web::WebResolver;