Trait polkadot_service::runtime_traits::AppVerify[][src]

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

Means of signature verification of an application key.

Associated Types

Type of the signer.

Required methods

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

Implementors