pub struct AuthProof {
pub keyset_id: Id,
pub secret: Secret,
pub c: PublicKey,
pub dleq: Option<ProofDleq>,
}
Expand description
Auth Proofs
Fields§
§keyset_id: Id
Keyset id
secret: Secret
Secret message
c: PublicKey
Unblinded signature
dleq: Option<ProofDleq>
Auth Proof Dleq
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AuthProof
impl<'de> Deserialize<'de> for AuthProof
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AuthProof, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AuthProof, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for AuthProof
impl Serialize for AuthProof
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for AuthProof
impl StructuralPartialEq for AuthProof
Auto Trait Implementations§
impl Freeze for AuthProof
impl RefUnwindSafe for AuthProof
impl Send for AuthProof
impl Sync for AuthProof
impl Unpin for AuthProof
impl UnwindSafe for AuthProof
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more