pub struct VerifyingKey<H: HashChain> {
pub bytes: ArrayVec<[u8; 60]>,
/* private fields */
}Expand description
Implementation of Verifier using Signature or VerifierSignature.
Fields§
§bytes: ArrayVec<[u8; 60]>Implementations§
Trait Implementations§
Source§impl<H: Clone + HashChain> Clone for VerifyingKey<H>
impl<H: Clone + HashChain> Clone for VerifyingKey<H>
Source§fn clone(&self) -> VerifyingKey<H>
fn clone(&self) -> VerifyingKey<H>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a, H: HashChain> Verifier<VerifierSignature<'a>> for VerifyingKey<H>
impl<'a, H: HashChain> Verifier<VerifierSignature<'a>> for VerifyingKey<H>
impl<H: Eq + HashChain> Eq for VerifyingKey<H>
impl<H: HashChain> StructuralPartialEq for VerifyingKey<H>
Auto Trait Implementations§
impl<H> Freeze for VerifyingKey<H>
impl<H> RefUnwindSafe for VerifyingKey<H>where
H: RefUnwindSafe,
impl<H> Send for VerifyingKey<H>
impl<H> Sync for VerifyingKey<H>
impl<H> Unpin for VerifyingKey<H>where
H: Unpin,
impl<H> UnwindSafe for VerifyingKey<H>where
H: UnwindSafe,
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