pub struct AppCheckerSignatureComponent<S: SignatureVerify<'static, HL, SL> + 'static, H: DigestDataHash<'static, HL> + 'static, const HL: usize, const SL: usize> { /* private fields */ }
Implementations§
Source§impl<S: SignatureVerify<'static, HL, SL>, H: DigestDataHash<'static, HL>, const HL: usize, const SL: usize> AppCheckerSignatureComponent<S, H, HL, SL>
impl<S: SignatureVerify<'static, HL, SL>, H: DigestDataHash<'static, HL>, const HL: usize, const SL: usize> AppCheckerSignatureComponent<S, H, HL, SL>
pub fn new( hasher: &'static H, verifier: &'static S, credential_type: TbfFooterV2CredentialsType, ) -> Self
Trait Implementations§
Source§impl<S: SignatureVerify<'static, HL, SL>, H: DigestDataHash<'static, HL> + Digest<'static, HL>, const HL: usize, const SL: usize> Component for AppCheckerSignatureComponent<S, H, HL, SL>
impl<S: SignatureVerify<'static, HL, SL>, H: DigestDataHash<'static, HL> + Digest<'static, HL>, const HL: usize, const SL: usize> Component for AppCheckerSignatureComponent<S, H, HL, SL>
Source§type StaticInput = (&'static mut MaybeUninit<AppCheckerSignature<'static, S, H, HL, SL>>, &'static mut MaybeUninit<[u8; HL]>, &'static mut MaybeUninit<[u8; SL]>)
type StaticInput = (&'static mut MaybeUninit<AppCheckerSignature<'static, S, H, HL, SL>>, &'static mut MaybeUninit<[u8; HL]>, &'static mut MaybeUninit<[u8; SL]>)
An optional type to specify the chip or board specific static memory
that a component needs to setup the output object(s). This is the memory
that
crate::static_buf!()
would normally setup, but generic
components cannot setup static buffers for types which are
chip-dependent, so those buffers have to be passed in manually, and the
Component::StaticInput
type makes this possible.Source§type Output = &'static AppCheckerSignature<'static, S, H, HL, SL>
type Output = &'static AppCheckerSignature<'static, S, H, HL, SL>
The type (e.g., capsule, peripheral) that this implementation of
Component
produces via Component::finalize()
. This is typically
a static reference (&'static
).Source§fn finalize(self, s: Self::StaticInput) -> Self::Output
fn finalize(self, s: Self::StaticInput) -> Self::Output
Auto Trait Implementations§
impl<S, H, const HL: usize, const SL: usize> Freeze for AppCheckerSignatureComponent<S, H, HL, SL>
impl<S, H, const HL: usize, const SL: usize> RefUnwindSafe for AppCheckerSignatureComponent<S, H, HL, SL>where
H: RefUnwindSafe,
S: RefUnwindSafe,
impl<S, H, const HL: usize, const SL: usize> Send for AppCheckerSignatureComponent<S, H, HL, SL>
impl<S, H, const HL: usize, const SL: usize> Sync for AppCheckerSignatureComponent<S, H, HL, SL>
impl<S, H, const HL: usize, const SL: usize> Unpin for AppCheckerSignatureComponent<S, H, HL, SL>
impl<S, H, const HL: usize, const SL: usize> UnwindSafe for AppCheckerSignatureComponent<S, H, HL, SL>where
H: RefUnwindSafe,
S: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more