saml-mdq 0.1.0

A Rust client for the SAML Metadata Query (MDQ) Protocol (IETF draft-young-md-query-saml)
1
2
3
4
5
6
7
8
9
10
11
mod cache;
mod client;
mod error;
mod hash;

pub use cache::MdqCache;
pub use client::{MdqClient, MdqClientBuilder};
pub use error::{MdqError, Result};
pub use hash::{encode_entity_id, hash_entity_id};

pub use samael::metadata::EntityDescriptor;