pub trait PublicKeyParts {
// Required methods
fn n(&self) -> &BigUint;
fn e(&self) -> &BigUint;
// Provided method
fn size(&self) -> usize { ... }
}
Expand description
Components of an RSA public key.
pub trait PublicKeyParts {
// Required methods
fn n(&self) -> &BigUint;
fn e(&self) -> &BigUint;
// Provided method
fn size(&self) -> usize { ... }
}
Components of an RSA public key.