Skip to main content

AppCheckerSignature

Struct AppCheckerSignature 

Source
pub struct AppCheckerSignature<'a, S: SignatureVerify<'static, HASH_LEN, SIGNATURE_LEN> + SelectKey<'a>, H: DigestDataHash<'a, HASH_LEN>, const HASH_LEN: usize, const SIGNATURE_LEN: usize> { /* private fields */ }
Expand description

Checker that validates a correct signature credential.

This checker provides the scaffolding on top of a hasher (&H) and a verifier (&S) for a given TbfFooterV2CredentialsType.

This assumes the TbfFooterV2CredentialsType data format only contains the signature (i.e. the data length of the credential in the TBF footer is the same as SIGNATURE_LEN).

Implementations§

Source§

impl<'a, S: SignatureVerify<'static, HASH_LEN, SIGNATURE_LEN> + SelectKey<'a>, H: DigestDataHash<'a, HASH_LEN>, const HASH_LEN: usize, const SIGNATURE_LEN: usize> AppCheckerSignature<'a, S, H, HASH_LEN, SIGNATURE_LEN>

Source

pub fn new( hasher: &'a H, verifier: &'a S, hash_buffer: &'static mut [u8; HASH_LEN], signature_buffer: &'static mut [u8; SIGNATURE_LEN], credential_type: TbfFooterV2CredentialsType, ) -> AppCheckerSignature<'a, S, H, HASH_LEN, SIGNATURE_LEN>

Trait Implementations§

Source§

impl<'a, S: SignatureVerify<'static, HASH_LEN, SIGNATURE_LEN> + SelectKey<'a>, H: DigestDataHash<'a, HASH_LEN>, const HASH_LEN: usize, const SIGNATURE_LEN: usize> AppCredentialsPolicy<'static> for AppCheckerSignature<'a, S, H, HASH_LEN, SIGNATURE_LEN>

Source§

fn require_credentials(&self) -> bool

Whether credentials are required or not. Read more
Source§

fn check_credentials( &self, credentials: TbfFooterV2Credentials, binary: &'static [u8], ) -> Result<(), (ErrorCode, TbfFooterV2Credentials, &'static [u8])>

Check a particular credential. Read more
Source§

fn set_client(&self, client: &'static dyn AppCredentialsPolicyClient<'static>)

Set the client which gets notified after the credential check completes.
Source§

impl<'a, S: SignatureVerify<'static, HASH_LEN, SIGNATURE_LEN> + SelectKey<'a>, H: DigestDataHash<'a, HASH_LEN>, const HASH_LEN: usize, const SIGNATURE_LEN: usize> ClientData<HASH_LEN> for AppCheckerSignature<'a, S, H, HASH_LEN, SIGNATURE_LEN>

Source§

fn add_mut_data_done( &self, _result: Result<(), ErrorCode>, _data: SubSliceMut<'static, u8>, )

Called when the data has been added to the digest. Read more
Source§

fn add_data_done( &self, result: Result<(), ErrorCode>, data: SubSlice<'static, u8>, )

Called when the data has been added to the digest. Read more
Source§

impl<'a, S: SignatureVerify<'static, HASH_LEN, SIGNATURE_LEN> + SelectKey<'a>, H: DigestDataHash<'a, HASH_LEN>, const HASH_LEN: usize, const SIGNATURE_LEN: usize> ClientHash<HASH_LEN> for AppCheckerSignature<'a, S, H, HASH_LEN, SIGNATURE_LEN>

Source§

fn hash_done( &self, result: Result<(), ErrorCode>, digest: &'static mut [u8; HASH_LEN], )

Called when a digest is computed. Read more
Source§

impl<'a, S: SignatureVerify<'static, HASH_LEN, SIGNATURE_LEN> + SelectKey<'a>, H: DigestDataHash<'a, HASH_LEN>, const HASH_LEN: usize, const SIGNATURE_LEN: usize> ClientVerify<HASH_LEN, SIGNATURE_LEN> for AppCheckerSignature<'a, S, H, HASH_LEN, SIGNATURE_LEN>

Source§

fn verification_done( &self, result: Result<bool, ErrorCode>, hash: &'static mut [u8; HASH_LEN], signature: &'static mut [u8; SIGNATURE_LEN], )

Called when the verification is complete. Read more
Source§

impl<'a, S: SignatureVerify<'static, HASH_LEN, SIGNATURE_LEN> + SelectKey<'a>, H: DigestDataHash<'a, HASH_LEN>, const HASH_LEN: usize, const SIGNATURE_LEN: usize> ClientVerify<HASH_LEN> for AppCheckerSignature<'a, S, H, HASH_LEN, SIGNATURE_LEN>

Source§

fn verification_done( &self, _result: Result<bool, ErrorCode>, _compare: &'static mut [u8; HASH_LEN], )

Called when a verification is computed. Read more
Source§

impl<'a, S: SignatureVerify<'static, HASH_LEN, SIGNATURE_LEN> + SelectKey<'a>, H: DigestDataHash<'a, HASH_LEN>, const HASH_LEN: usize, const SIGNATURE_LEN: usize> SelectKeyClient for AppCheckerSignature<'a, S, H, HASH_LEN, SIGNATURE_LEN>

Source§

fn get_key_count_done(&self, count: usize)

Called when the number of keys available is known.
Source§

fn select_key_done( &self, _index: usize, metadata: usize, error: Result<(), ErrorCode>, )

Called when the specified key is active and ready to use for the next cryptographic operation. Read more

Auto Trait Implementations§

§

impl<'a, S, H, const HASH_LEN: usize, const SIGNATURE_LEN: usize> !Freeze for AppCheckerSignature<'a, S, H, HASH_LEN, SIGNATURE_LEN>

§

impl<'a, S, H, const HASH_LEN: usize, const SIGNATURE_LEN: usize> !RefUnwindSafe for AppCheckerSignature<'a, S, H, HASH_LEN, SIGNATURE_LEN>

§

impl<'a, S, H, const HASH_LEN: usize, const SIGNATURE_LEN: usize> !Send for AppCheckerSignature<'a, S, H, HASH_LEN, SIGNATURE_LEN>

§

impl<'a, S, H, const HASH_LEN: usize, const SIGNATURE_LEN: usize> !Sync for AppCheckerSignature<'a, S, H, HASH_LEN, SIGNATURE_LEN>

§

impl<'a, S, H, const HASH_LEN: usize, const SIGNATURE_LEN: usize> !UnwindSafe for AppCheckerSignature<'a, S, H, HASH_LEN, SIGNATURE_LEN>

§

impl<'a, S, H, const HASH_LEN: usize, const SIGNATURE_LEN: usize> Unpin for AppCheckerSignature<'a, S, H, HASH_LEN, SIGNATURE_LEN>

§

impl<'a, S, H, const HASH_LEN: usize, const SIGNATURE_LEN: usize> UnsafeUnpin for AppCheckerSignature<'a, S, H, HASH_LEN, SIGNATURE_LEN>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T, const DIGEST_LEN: usize> Client<DIGEST_LEN> for T
where T: ClientData<DIGEST_LEN> + ClientHash<DIGEST_LEN> + ClientVerify<DIGEST_LEN>,

Source§

impl<T, const DIGEST_LEN: usize> ClientDataHash<DIGEST_LEN> for T
where T: ClientData<DIGEST_LEN> + ClientHash<DIGEST_LEN>,

Source§

impl<T, const DIGEST_LEN: usize> ClientDataVerify<DIGEST_LEN> for T
where T: ClientData<DIGEST_LEN> + ClientVerify<DIGEST_LEN>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.