pub trait SigningKey<VK: VerificationKey> {
    fn sign<R: SecureRng>(
        &self,
        plaintext: &VK::Plaintext,
        public_key: &VK,
        rng: &mut GeneralRng<R>
    ) -> VK::Signature; }
Expand description

The Signing key.

Required Methods

Sign the plaintext message using the (secret) Signing key.

Implementors