pub struct VerifyingKey<C: Curve> { /* private fields */ }Expand description
An Edwards curve verifying key
Implementations§
Source§impl<C: Curve> VerifyingKey<C>
impl<C: Curve> VerifyingKey<C>
Sourcepub fn from_raw_bytes(bytes: &[u8]) -> Option<Self>
pub fn from_raw_bytes(bytes: &[u8]) -> Option<Self>
Create a verifying key from the raw public key bytes
Trait Implementations§
Source§impl<C: Curve> Parameters for VerifyingKey<C>
impl<C: Curve> Parameters for VerifyingKey<C>
Source§impl<C: Curve> VerifySignature for VerifyingKey<C>
impl<C: Curve> VerifySignature for VerifyingKey<C>
Auto Trait Implementations§
impl<C> Freeze for VerifyingKey<C>
impl<C> RefUnwindSafe for VerifyingKey<C>
impl<C> Send for VerifyingKey<C>
impl<C> Sync for VerifyingKey<C>
impl<C> Unpin for VerifyingKey<C>
impl<C> UnwindSafe for VerifyingKey<C>
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