pub trait PrivateKeyParts: PublicKeyParts {
// Required methods
fn d(&self) -> &BigUint;
fn primes(&self) -> &[BigUint];
fn dp(&self) -> Option<&BigUint>;
fn dq(&self) -> Option<&BigUint>;
fn qinv(&self) -> Option<&BigInt>;
fn crt_values(&self) -> Option<&[CrtValue]>;
}
Expand description
Components of an RSA private key.
Required Methods§
sourcefn crt_values(&self) -> Option<&[CrtValue]>
fn crt_values(&self) -> Option<&[CrtValue]>
Returns an iterator over the CRT Values