[][src]Struct darkcontract::coconut::coconut::Coconut

pub struct Coconut<R: RngInstance> {
    pub params: Parameters<R>,
    // some fields omitted
}

Fields

params: Parameters<R>

Methods

impl<R: RngInstance> Coconut<R>[src]

pub fn new(
    attributes_size: u32,
    authorities_threshold: u32,
    authorities_total: u32
) -> Self
[src]

pub fn multiparty_keygen(&self) -> (Vec<SecretKey>, Vec<VerifyKey>)[src]

pub fn aggregate_keys(&self, verify_keys: &Vec<VerifyKey>) -> VerifyKey[src]

pub fn make_blind_sign_request<'a>(
    &self,
    shared_attribute_key: &'a ElGamalPublicKey<R>,
    private_attributes: &'a Vec<Attribute>,
    public_attributes: &'a Vec<Attribute>,
    external_commitments: Vec<Box<dyn ProofCommitments>>
) -> BlindSignatureRequest
[src]

pub fn aggregate(
    &self,
    signature_shares: &Vec<G1Projective>,
    indexes: Vec<u64>
) -> G1Projective
[src]

pub fn make_credential<'b>(
    &self,
    verify_key: &VerifyKey,
    signature: &Signature,
    attributes: &Vec<Attribute>,
    external_commitments: Vec<Box<dyn ProofCommitments + 'b>>
) -> Credential
[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for Coconut<R> where
    R: RefUnwindSafe

impl<R> Send for Coconut<R> where
    R: Send

impl<R> Sync for Coconut<R> where
    R: Sync

impl<R> Unpin for Coconut<R> where
    R: Unpin

impl<R> UnwindSafe for Coconut<R> where
    R: UnwindSafe

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