Struct ring_compat::signature::ed25519::VerifyingKey[][src]

pub struct VerifyingKey(_);
This is supported on crate feature signature only.

Ed25519 verifying key.

Implementations

impl VerifyingKey[src]

pub const SIZE: usize[src]

Size of a VerifyingKey in bytes.

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

Parse a verify key (encoded in compressed Edwards-y form) from bytes.

Trait Implementations

impl AsRef<[u8]> for VerifyingKey[src]

impl Clone for VerifyingKey[src]

impl Debug for VerifyingKey[src]

impl Eq for VerifyingKey[src]

impl From<&'_ SigningKey> for VerifyingKey[src]

impl PartialEq<VerifyingKey> for VerifyingKey[src]

impl StructuralEq for VerifyingKey[src]

impl StructuralPartialEq for VerifyingKey[src]

impl Verifier<Signature> for VerifyingKey[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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> 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.