elastic_elgamal

Struct Keypair

Source
pub struct Keypair<G: Group> { /* private fields */ }
Expand description

Keypair for ElGamal encryption and related protocols, consisting of a SecretKey and the matching PublicKey.

Implementations§

Source§

impl<G: Group> Keypair<G>

Source

pub fn generate<R: RngCore + CryptoRng>(rng: &mut R) -> Self

Generates a random keypair.

Source

pub fn public(&self) -> &PublicKey<G>

Returns the public part of this keypair.

Source

pub fn secret(&self) -> &SecretKey<G>

Returns the secret part of this keypair.

Source

pub fn into_tuple(self) -> (PublicKey<G>, SecretKey<G>)

Returns public and secret keys comprising this keypair.

Trait Implementations§

Source§

impl<G: Group> Clone for Keypair<G>

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<G: Group> Debug for Keypair<G>

Source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de, G: Group> Deserialize<'de> for Keypair<G>

Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<G: Group> From<SecretKey<G>> for Keypair<G>

Source§

fn from(secret: SecretKey<G>) -> Self

Converts to this type from the input type.
Source§

impl<G: Group> Mul<&<G as ScalarOps>::Scalar> for Keypair<G>

Source§

type Output = Keypair<G>

The resulting type after applying the * operator.
Source§

fn mul(self, k: &G::Scalar) -> Self

Performs the * operation. Read more
Source§

impl<G: Group> Serialize for Keypair<G>

Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl<G> Freeze for Keypair<G>
where <G as ScalarOps>::Scalar: Freeze, <G as ElementOps>::Element: Freeze,

§

impl<G> RefUnwindSafe for Keypair<G>

§

impl<G> Send for Keypair<G>
where <G as ScalarOps>::Scalar: Send, <G as ElementOps>::Element: Send,

§

impl<G> Sync for Keypair<G>
where <G as ScalarOps>::Scalar: Sync, <G as ElementOps>::Element: Sync,

§

impl<G> Unpin for Keypair<G>
where <G as ScalarOps>::Scalar: Unpin, <G as ElementOps>::Element: Unpin,

§

impl<G> UnwindSafe for Keypair<G>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V

Source§

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