pub trait RsaKeyComponents {
// Required methods
fn get_n(&self) -> String;
fn get_e(&self) -> String;
}
Expand description
RSA key component trait definition. Stores the n- and e-component of the RSA key.
pub trait RsaKeyComponents {
// Required methods
fn get_n(&self) -> String;
fn get_e(&self) -> String;
}
RSA key component trait definition. Stores the n- and e-component of the RSA key.