[][src]Struct blst::min_pk::PublicKey

pub struct PublicKey {
    pub point: blst_p1_affine,
}

Fields

point: blst_p1_affine

Implementations

impl PublicKey[src]

pub fn key_validate(key: &[u8]) -> Result<Self, BLST_ERROR>[src]

pub fn from_aggregate(agg_pk: *const AggregatePublicKey) -> Self[src]

pub fn compress(&self) -> [u8; 48][src]

pub fn serialize(&self) -> [u8; 96][src]

pub fn uncompress(pk_comp: &[u8]) -> Result<Self, BLST_ERROR>[src]

pub fn deserialize(pk_in: &[u8]) -> Result<Self, BLST_ERROR>[src]

pub fn from_bytes(pk_in: &[u8]) -> Result<Self, BLST_ERROR>[src]

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

Trait Implementations

impl Clone for PublicKey[src]

impl Copy for PublicKey[src]

impl Debug for PublicKey[src]

impl PartialEq<PublicKey> for PublicKey[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> 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.