Ed25519Ops

Trait Ed25519Ops 

pub trait Ed25519Ops {
    // Required method
    fn generate_ed25519_key_pair(&self) -> SigningKeypair;
}

Required Methods§

fn generate_ed25519_key_pair(&self) -> SigningKeypair

Generate a signing key pair for use with the Ed25519Signing trait.

Implementors§

§

impl<H, S, CR: RngCore + CryptoRng> Ed25519Ops for Recrypt<H, S, RandomBytes<CR>>