pub struct P256VerifyingKey(/* private fields */);Expand description
P-256 ECDSA public key.
Trait Implementations§
Source§impl Clone for P256VerifyingKey
impl Clone for P256VerifyingKey
Source§fn clone(&self) -> P256VerifyingKey
fn clone(&self) -> P256VerifyingKey
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 Debug for P256VerifyingKey
impl Debug for P256VerifyingKey
Source§impl<'a> Import<&'a [u8]> for P256VerifyingKey
impl<'a> Import<&'a [u8]> for P256VerifyingKey
Source§impl PartialEq for P256VerifyingKey
impl PartialEq for P256VerifyingKey
Source§impl PublicKey for P256VerifyingKey
impl PublicKey for P256VerifyingKey
Source§impl VerifyingKey<NistP256> for P256VerifyingKey
impl VerifyingKey<NistP256> for P256VerifyingKey
Source§fn verify(&self, msg: &[u8], sig: &P256Signature) -> Result<(), SignerError>
fn verify(&self, msg: &[u8], sig: &P256Signature) -> Result<(), SignerError>
Reports whether the signature over
msg is valid.impl Eq for P256VerifyingKey
impl StructuralPartialEq for P256VerifyingKey
Auto Trait Implementations§
impl Freeze for P256VerifyingKey
impl RefUnwindSafe for P256VerifyingKey
impl Send for P256VerifyingKey
impl Sync for P256VerifyingKey
impl Unpin for P256VerifyingKey
impl UnwindSafe for P256VerifyingKey
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