Trait KeyPair

pub trait KeyPair: Sized {
    // Required method
    fn sign(&self, message: &[u8]) -> Signature;
}
Expand description

A cryptographic key pair for digitally signing data.

Required Methods§

fn sign(&self, message: &[u8]) -> Signature

Signs a JSON object.

§Parameters
  • message: An arbitrary series of bytes to sign.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§