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 moresource§impl<Public, Private> Debug for KeyPairComponents<Public, Private>where
PublicKeyComponents<Public>: Debug,
impl<Public, Private> Debug for KeyPairComponents<Public, Private>where
PublicKeyComponents<Public>: Debug,
impl<Public: Copy, Private: Copy> Copy for KeyPairComponents<Public, Private>
Auto Trait Implementations§
impl<Public, Private> Freeze for KeyPairComponents<Public, Private>
impl<Public, Private> RefUnwindSafe for KeyPairComponents<Public, Private>where
Private: RefUnwindSafe,
Public: RefUnwindSafe,
impl<Public, Private> Send for KeyPairComponents<Public, Private>
impl<Public, Private> Sync for KeyPairComponents<Public, Private>
impl<Public, Private> Unpin for KeyPairComponents<Public, Private>
impl<Public, Private> UnwindSafe for KeyPairComponents<Public, Private>where
Private: UnwindSafe,
Public: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)