RsaKeyComponents

Trait RsaKeyComponents 

Source
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.

Required Methods§

Source

fn get_n(&self) -> String

Source

fn get_e(&self) -> String

Implementors§