pub trait AuthorizedKeysFormat {
// Required methods
fn to_openssl(&self, comment: &str) -> String;
fn from_openssl(
openssl_pubkey: &str,
) -> Result<(Self, String), RsaPubKeyError>
where Self: Sized;
}
pub trait AuthorizedKeysFormat {
// Required methods
fn to_openssl(&self, comment: &str) -> String;
fn from_openssl(
openssl_pubkey: &str,
) -> Result<(Self, String), RsaPubKeyError>
where Self: Sized;
}