1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//! Brings most relevant types and traits into scope for working with
//! certificates.
//!
//! Less often used types and traits that are more likely to lead to a
//! naming conflict are not brought into scope.
//!
//! Traits are brought into scope anonymously.
//!
//! ```
//! # #![allow(unused_imports)]
//! # use sequoia_openpgp as openpgp;
//! use openpgp::cert::prelude::*;
//! ```

#![allow(unused_imports)]
pub use crate::cert::{
    Cert,
    CertBuilder,
    CertParser,
    CertRevocationBuilder,
    CipherSuite,
    Preferences as _,
    SubkeyRevocationBuilder,
    UserAttributeRevocationBuilder,
    UserIDRevocationBuilder,
    ValidCert,
    amalgamation::ComponentAmalgamation,
    amalgamation::ComponentAmalgamationIter,
    amalgamation::UnknownComponentAmalgamation,
    amalgamation::UnknownComponentAmalgamationIter,
    amalgamation::UserAttributeAmalgamation,
    amalgamation::UserAttributeAmalgamationIter,
    amalgamation::UserIDAmalgamation,
    amalgamation::UserIDAmalgamationIter,
    amalgamation::ValidAmalgamation as _,
    amalgamation::ValidComponentAmalgamation,
    amalgamation::ValidComponentAmalgamationIter,
    amalgamation::ValidUserAttributeAmalgamation,
    amalgamation::ValidUserAttributeAmalgamationIter,
    amalgamation::ValidUserIDAmalgamation,
    amalgamation::ValidUserIDAmalgamationIter,
    amalgamation::ValidateAmalgamation as _,
    amalgamation::key::ErasedKeyAmalgamation,
    amalgamation::key::KeyAmalgamation,
    amalgamation::key::KeyAmalgamationIter,
    amalgamation::key::PrimaryKey as _,
    amalgamation::key::PrimaryKeyAmalgamation,
    amalgamation::key::SubordinateKeyAmalgamation,
    amalgamation::key::ValidErasedKeyAmalgamation,
    amalgamation::key::ValidKeyAmalgamation,
    amalgamation::key::ValidKeyAmalgamationIter,
    amalgamation::key::ValidPrimaryKeyAmalgamation,
    amalgamation::key::ValidSubordinateKeyAmalgamation,
    bundle::ComponentBundle,
    bundle::KeyBundle,
    bundle::PrimaryKeyBundle,
    bundle::SubkeyBundle,
    bundle::UnknownBundle,
    bundle::UserAttributeBundle,
    bundle::UserIDBundle,
};