[][src]Struct challenge_bypass_ristretto::voprf::UnblindedToken

#[repr(C)]
pub struct UnblindedToken { pub t: TokenPreimage, W: CompressedRistretto, }

An UnblindedToken is the result of unblinding a SignedToken.

While both the client and server both "know" this value, it should nevertheless not be sent between the two.

Fields

t: TokenPreimage

t is the TokenPreimage

W: CompressedRistretto

W is the unblinded signed CompressedRistretto point

\(W = Q^{1/r} = P^{k(1/r)} = T^{rk(1/r)} = T^k\)

Methods

impl UnblindedToken[src]

pub fn derive_verification_key<D>(&self) -> VerificationKey where
    D: Digest<OutputSize = U64> + Default
[src]

Derive the VerificationKey for this particular UnblindedToken

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

Convert this UnblindedToken to a byte array.

fn bytes_length_error() -> TokenError[src]

pub fn from_bytes(bytes: &[u8]) -> Result<UnblindedToken, TokenError>[src]

Construct a UnblindedToken from a slice of bytes.

Trait Implementations

impl Debug for UnblindedToken[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self