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