Struct ring::rsa::KeyPairComponents
source · pub struct KeyPairComponents<Public, Private = Public> {
pub public_key: PublicKeyComponents<Public>,
pub d: Private,
pub p: Private,
pub q: Private,
pub dP: Private,
pub dQ: Private,
pub qInv: Private,
}Expand description
RSA key pair components.
Fields§
§public_key: PublicKeyComponents<Public>The public key components.
d: PrivateThe private exponent.
p: PrivateThe first prime factor of d.
q: PrivateThe second prime factor of d.
dP: Privatep’s public Chinese Remainder Theorem exponent.
dQ: Privateq’s public Chinese Remainder Theorem exponent.
qInv: Privateq**-1 mod p.
Trait Implementations§
source§impl<Public: Clone, Private: Clone> Clone for KeyPairComponents<Public, Private>
impl<Public: Clone, Private: Clone> Clone for KeyPairComponents<Public, Private>
source§fn clone(&self) -> KeyPairComponents<Public, Private>
fn clone(&self) -> KeyPairComponents<Public, Private>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more