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: Private
The private exponent.
p: Private
The first prime factor of d
.
q: Private
The second prime factor of d
.
dP: Private
p
’s public Chinese Remainder Theorem exponent.
dQ: Private
q
’s public Chinese Remainder Theorem exponent.
qInv: Private
q**-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