ring/src/rsa/keypair.rs
Brian Smith 4a3a17fd21 RSA: Split PKCS#8-specific logic out from general RSA private key construction logic.
Prepare for the introduction of a public API for constructing RSA key pairs from
components, and for the introduction of RSA encryption APIs.
2021-09-23 10:44:03 -07:00

6 lines
107 B
Rust

//! Low-level RSA key pair (private key) API.
pub(crate) mod components;
pub use components::Components;