Enum fujisaki_ringsig::trace::Trace [] [src]

pub enum Trace<'a> {
    Indep,
    Linked,
    Revealed(&'a PublicKey),
}

Encodes the relationship of two signatures

Variants

Indep indicates that the two given signatures were constructed with different private keys.

Linked indicates that the same private key was used to sign the same message under the same tag. This does not reveal which key performed the double-signature.

The same key was used to sign distinct messages under the same tag. Revealed(p) reveals that pubkey.

Trait Implementations

impl<'a> Debug for Trace<'a>
[src]

Formats the value using the given formatter.

impl<'a> Eq for Trace<'a>
[src]

impl<'a> PartialEq for Trace<'a>
[src]

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

This method tests for !=.