pub trait SigningKey: Signer<Signature> {
    fn public_key(&self) -> KeyData;
}
Expand description

Trait for signing keys which produce a Signature.

This trait is automatically impl’d for any types which impl the Signer trait for the SSH Signature type and also support a From conversion for public::KeyData.

Required Methods

Get the public::KeyData for this signing key.

Implementors