Trait Specification

Source
pub trait Specification {
    type PublicKey: Array;
    type Signature: Array;
}
Expand description

Any implementation of a cryptographic primitive must specify a PublicKey and Signature.

Required Associated Types§

Source

type PublicKey: Array

Public key used for verifying signatures.

Source

type Signature: Array

Signature generated by signing a message.

Implementors§