[][src]Struct bbs::keys::PublicKey

pub struct PublicKey {
    pub h0: GeneratorG1,
    pub h: Vec<GeneratorG1>,
    pub w: GeneratorG2,
}

PublicKey consists of a blinding generator h_0, a commitment to the secret key w and a generator for each message in h

Fields

h0: GeneratorG1

Blinding factor generator

h: Vec<GeneratorG1>

Base for each message to be signed

w: GeneratorG2

Commitment to the private key

Implementations

impl PublicKey[src]

pub fn message_count(&self) -> usize[src]

Return how many messages this public key can be used to sign

pub fn validate(&self) -> Result<(), BBSError>[src]

Make sure no generator is identity

Trait Implementations

impl Clone for PublicKey[src]

impl Debug for PublicKey[src]

impl<'a> Deserialize<'a> for PublicKey[src]

impl Display for PublicKey[src]

impl Eq for PublicKey[src]

impl PartialEq<PublicKey> for PublicKey[src]

impl Serialize for PublicKey[src]

impl StructuralEq for PublicKey[src]

impl StructuralPartialEq for PublicKey[src]

impl ToVariableLengthBytes for PublicKey[src]

type Output = PublicKey

The type that implements this trait

type Error = BBSError

The type of error to return

impl<'_> TryFrom<&'_ [u8]> for PublicKey[src]

type Error = BBSError

The type returned in the event of a conversion error.

impl TryFrom<Vec<u8>> for PublicKey[src]

type Error = BBSError

The type returned in the event of a conversion error.

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> ToString for T where
    T: Display + ?Sized
[src]

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