Skip to main content

actr_hyper/verify/
mod.rs

1//! Package verification module.
2//!
3//! Verifies `.actr` ZIP STORE packages via a pluggable [`TrustProvider`].
4
5#[cfg(not(target_arch = "wasm32"))]
6mod cert_cache;
7#[cfg(not(target_arch = "wasm32"))]
8mod trust;
9
10#[cfg(not(target_arch = "wasm32"))]
11pub use cert_cache::MfrCertCache;
12#[cfg(not(target_arch = "wasm32"))]
13pub use trust::{ChainTrust, RegistryTrust, StaticTrust, TrustProvider};