tasign 0.2.0

TA ELF signing utilities with CMS/PKCS#7 support
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! RustCrypto backend — `Pk` with mbedtls-compatible method signatures.

pub mod cert_sm2;
pub mod hash;
#[cfg(feature = "std")]
pub(crate) mod gmssl_pkcs8;
pub mod key;
pub mod pk;
#[cfg(feature = "std")]
pub mod rng;
mod sm2_raw;
mod rsa_ecdsa;

#[cfg(feature = "interop-bytes")]
pub use sm2_raw::{sm2_verify_digest_sec1, sm2_verify_message_sec1};
#[cfg(all(feature = "interop-bytes", feature = "std"))]
pub use sm2_raw::{sm2_sign_digest, sm2_sign_message};