[][src]Struct elgamal_curve25519::KeyPair

pub struct KeyPair {
    pub public_key: PublicKey,
    pub private_key: PrivateKey,
}

KeyPair is a pair of ElGamal PublicKey and PrivateKey.

Fields

public_key: PublicKeyprivate_key: PrivateKey

Methods

impl KeyPair[src]

pub fn new() -> Result<KeyPair>[src]

new creates a new random KeyPair.

pub fn from_rng<R>(rng: &mut R) -> Result<KeyPair> where
    R: RngCore + CryptoRng
[src]

from_rng creates a new random KeyPair, but requires to specify a random generator.

pub fn from_hash<D>(digest: D) -> KeyPair where
    D: Digest<OutputSize = U64>, 
[src]

from_hash creates a new KeyPair from a 64 bytes hash.

pub fn from_scalar(scalar: Scalar) -> Result<KeyPair>[src]

from_scalar creates a new KeyPair from a Scalar. The Scalar value cannot be 0.

pub fn from_bytes(buf: [u8; 32]) -> Result<KeyPair>[src]

from_bytes creates a new KeyPair from a bytes of bytes.

Trait Implementations

impl Eq for KeyPair[src]

impl PartialEq<KeyPair> for KeyPair[src]

impl Copy for KeyPair[src]

impl Clone for KeyPair[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for KeyPair[src]

Auto Trait Implementations

impl Send for KeyPair

impl Sync for KeyPair

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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

type Output = T

Should always be Self