Enum indy_crypto::cl::CredentialValue[][src]

pub enum CredentialValue {
    Known {
        value: BigNumber,
    },
    Hidden {
        value: BigNumber,
    },
    Commitment {
        value: BigNumber,
        blinding_factor: BigNumber,
    },
}

The m value for attributes, commitments also store a blinding factor

Variants

Fields of Known

Fields of Hidden

Fields of Commitment

Methods

impl CredentialValue
[src]

Trait Implementations

impl Debug for CredentialValue
[src]

Formats the value using the given formatter. Read more

impl Eq for CredentialValue
[src]

impl PartialEq for CredentialValue
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl JsonEncodable for CredentialValue
[src]

impl<'a> JsonDecodable<'a> for CredentialValue
[src]

Auto Trait Implementations