voa_config/config/technology/openpgp/verification/
mod.rs

1//! Configuration objects for the various OpenPGP verification methods.
2
3mod plain;
4mod trust_anchor;
5mod wot;
6
7pub use plain::PlainMode;
8pub use trust_anchor::{NumCertifications, TrustAnchorMode};
9pub(crate) use wot::TRUST_AMOUNT_MAX;
10pub use wot::{
11    TrustAmountFlow,
12    TrustAmountPartial,
13    TrustAmountRoot,
14    WebOfTrustMode,
15    WebOfTrustRoot,
16};