sui_types::signature

Trait AuthenticatorTrait

Source
pub trait AuthenticatorTrait {
    // Required methods
    fn verify_user_authenticator_epoch(
        &self,
        epoch: EpochId,
        max_epoch_upper_bound_delta: Option<u64>,
    ) -> SuiResult;
    fn verify_claims<T>(
        &self,
        value: &IntentMessage<T>,
        author: SuiAddress,
        aux_verify_data: &VerifyParams,
        zklogin_inputs_cache: Arc<VerifiedDigestCache<ZKLoginInputsDigest>>,
    ) -> SuiResult
       where T: Serialize;
}
Expand description

A lightweight trait that all members of [enum GenericSignature] implement.

Required Methods§

Source

fn verify_user_authenticator_epoch( &self, epoch: EpochId, max_epoch_upper_bound_delta: Option<u64>, ) -> SuiResult

Source

fn verify_claims<T>( &self, value: &IntentMessage<T>, author: SuiAddress, aux_verify_data: &VerifyParams, zklogin_inputs_cache: Arc<VerifiedDigestCache<ZKLoginInputsDigest>>, ) -> SuiResult
where T: Serialize,

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§