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
//! Utilities for calculating
//! [Representation Independent Hashes](https://internetcomputer.org/docs/references/ic-interface-spec/#hash-of-map)
//! of [HttpRequest](crate::HttpRequest) and [HttpResponse](crate::HttpRequest) objects.

mod request_hash;
pub use request_hash::*;

mod response_hash;
pub use response_hash::*;

/// Sha256 Digest: 32 bytes
pub type Hash = [u8; 32];