Struct ed448_verifier::verifying::VerifyingKey

source ·
pub struct VerifyingKey { /* private fields */ }
Expand description

Ed448 public key.

Optionally implements

§Example

Please see the verifying module.

Implementations§

source§

impl VerifyingKey

source

pub fn from_bytes(bytes: &[u8; 57]) -> Result<Self, SignatureError>

Constructs a verifying key from a given byte slice.

Fails if bytes is not 57 bytes long, or if bytes does not represent a valid point on the curve.

source

pub fn raw_verify<CtxDigest>( &self, context: Option<&[u8]>, message: &[u8], signature: &Signature, ) -> Result<(), SignatureError>
where CtxDigest: Digest<OutputSize = U114>,

Verifies a given signature for a specified message.

As this function is intended to be internally used, please use VerifyingKey::verify instead unless you disable the “sha3” feature.

Trait Implementations§

source§

impl DigestVerifier<XofDigest<CoreWrapper<Shake256Core>, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>, Signature> for VerifyingKey

source§

fn verify_digest( &self, digest: Shake256U64, signature: &Signature, ) -> Result<(), SignatureError>

Verify the signature against the given [Digest] output.
source§

impl TryFrom<&[u8]> for VerifyingKey

source§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(bytes: &[u8]) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl Verifier<Signature> for VerifyingKey

source§

fn verify( &self, msg: &[u8], signature: &Signature, ) -> Result<(), SignatureError>

Use Self to verify that the provided signature for a given message bytestring is authentic. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.