[][src]Struct frost_dalek::keygen::GroupKey

pub struct GroupKey(_);

A public key, used to verify a signature made by a threshold of a group of participants.

Implementations

impl GroupKey[src]

pub fn to_bytes(&self) -> [u8; 32][src]

Serialise this group public key to an array of bytes.

pub fn from_bytes(bytes: [u8; 32]) -> Result<GroupKey, ()>[src]

Deserialise this group public key from an array of bytes.

Trait Implementations

impl Clone for GroupKey[src]

impl Copy for GroupKey[src]

impl Debug for GroupKey[src]

impl Eq for GroupKey[src]

impl PartialEq<GroupKey> for GroupKey[src]

impl StructuralEq for GroupKey[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,