openpgp-card-sequoia: add re-exports
This commit is contained in:
parent
d2ac526523
commit
9723ae40b6
2 changed files with 10 additions and 0 deletions
|
@ -142,6 +142,7 @@ mod decryptor;
|
|||
mod privkey;
|
||||
mod signer;
|
||||
pub mod sq_util;
|
||||
pub mod types;
|
||||
pub mod util;
|
||||
|
||||
/// Shorthand for Sequoia public key data (a single public (sub)key)
|
||||
|
|
9
openpgp-card-sequoia/src/types.rs
Normal file
9
openpgp-card-sequoia/src/types.rs
Normal file
|
@ -0,0 +1,9 @@
|
|||
// SPDX-FileCopyrightText: 2022 Heiko Schaefer <heiko@schaefer.name>
|
||||
// SPDX-License-Identifier: MIT OR Apache-2.0
|
||||
|
||||
//! Re-exports of openpgp-card types to enable standalone-use of openpgp-card-sequoia.
|
||||
|
||||
pub use openpgp_card::algorithm::{Algo, AlgoSimple, Curve};
|
||||
pub use openpgp_card::card_do::{Sex, TouchPolicy};
|
||||
pub use openpgp_card::crypto_data::{EccType, PublicKeyMaterial};
|
||||
pub use openpgp_card::{CardBackend, Error, KeyType, StatusBytes};
|
Loading…
Reference in a new issue