pub trait KeyEvolvingSignatureAlgorithm: VerificationAlgorithm {
    // Required method
    fn get_period(sig: &Self::Signature) -> u32;
}

Required Methods§

source

fn get_period(sig: &Self::Signature) -> u32

Get the period associated with this signature

Implementors§