[][src]Struct ring::signature::UnparsedPublicKey

pub struct UnparsedPublicKey<B: AsRef<[u8]>> { /* fields omitted */ }

An unparsed, possibly malformed, public key for signature verification.

Methods

impl<B: AsRef<[u8]>> UnparsedPublicKey<B>[src]

pub fn new(algorithm: &'static dyn VerificationAlgorithm, bytes: B) -> Self[src]

Construct a new UnparsedPublicKey.

No validation of bytes is done until verify() is called.

pub fn verify(
    &self,
    message: &[u8],
    signature: &[u8]
) -> Result<(), Unspecified>
[src]

Parses the public key and verifies signature is a valid signature of message using it.

See the crate::signature module-level documentation for examples.

Trait Implementations

impl<B: Copy> Copy for UnparsedPublicKey<B> where
    B: AsRef<[u8]>, 
[src]

impl<B: Clone> Clone for UnparsedPublicKey<B> where
    B: AsRef<[u8]>, 
[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<B> Unpin for UnparsedPublicKey<B> where
    B: Unpin

impl<B> Sync for UnparsedPublicKey<B> where
    B: Sync

impl<B> Send for UnparsedPublicKey<B> where
    B: Send

impl<B> !RefUnwindSafe for UnparsedPublicKey<B>

impl<B> !UnwindSafe for UnparsedPublicKey<B>

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.