pub trait AppVerify {
    type AccountId;

    fn verify<L: Lazy<[u8]>>(&self, msg: L, signer: &Self::AccountId) -> bool;
}
Expand description

Means of signature verification of an application key.

Required Associated Types§

Type of the signer.

Required Methods§

Verify a signature. Return true if signature is valid for the value.

Implementors§