Trait ring::signature::KeyPair [−][src]
pub trait KeyPair: Debug + Send + Sized + Sync { type PublicKey: AsRef<[u8]> + Debug + Clone + Send + Sized + Sync; fn public_key(&self) -> &Self::PublicKey; }
Key pairs for signing messages (private key and public key).
Associated Types
Loading content...Required methods
fn public_key(&self) -> &Self::PublicKey
[src]
The public key for the key pair.
Implementors
impl KeyPair for EcdsaKeyPair
[src]
impl KeyPair for EcdsaKeyPair
[src]type PublicKey = PublicKey
fn public_key(&self) -> &Self::PublicKey
[src]
impl KeyPair for Ed25519KeyPair
[src]
impl KeyPair for Ed25519KeyPair
[src]type PublicKey = PublicKey
fn public_key(&self) -> &Self::PublicKey
[src]
impl KeyPair for RsaKeyPair
[src]
impl KeyPair for RsaKeyPair
[src]