ic-http-certification 3.2.0

Certification for HTTP responses for the Internet Computer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The Tree module contains functions and builders for managing certified
//! [HttpRequest](crate::HttpRequest) and [HttpResponse](crate::HttpResponse) pairs in a
//! purpose-build HTTP certification data structure.
//!
//! Certifications are prepared using the [HttpCertification] enum.

mod certification;
mod certification_tree;
mod certification_tree_entry;
mod certification_tree_path;

pub use certification::*;
pub use certification_tree::*;
pub use certification_tree_entry::*;
pub use certification_tree_path::*;