[][src]Struct cryptoballot::AuthPackage

pub struct AuthPackage { /* fields omitted */ }

The Auth Package triplet of election-id, ballot-id, and voter public key

Make sure this package is blinded before being sent to the authenticator to keep the voter's public-key secret from the authenticator.

Methods

impl AuthPackage[src]

pub fn new(
    election_id: Identifier,
    ballot_id: Uuid,
    anonymous_key: PublicKey
) -> Self
[src]

Create a new authentication package

pub fn blind(&self, signer_pub_key: &RSAPublicKey) -> (Vec<u8>, Vec<u8>)[src]

Blind the authentication package, readiying it to be send to the authenticator

Trait Implementations

impl Clone for AuthPackage[src]

impl Debug for AuthPackage[src]

impl<'de> Deserialize<'de> for AuthPackage[src]

impl Serialize for AuthPackage[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,