9 lines
446 B
Rust
9 lines
446 B
Rust
// 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};
|