Struct blindsign::signature::WiredUnblindedSigData[][src]

pub struct WiredUnblindedSigData(pub [u8; 96]);

The UnblindedSigData in wired form capable of being sent over the network. The wired form consists of e || S || R, with each component consisting of 32 bytes.

Methods

impl WiredUnblindedSigData
[src]

Converts WiredUnblindedSigData into UnblindedSigData.

Returns

  • Ok(UnblindedSigData) on success

  • Err(::Error) on failure, which could be due to any component of the internal [u8; 96] being malformed.

Returns a reference to the internal [u8; 96]

Returns a copy of the internal [u8; 96]

Trait Implementations

impl From<UnblindedSigData> for WiredUnblindedSigData
[src]

Performs the conversion.

Auto Trait Implementations