pub struct GroupedElGamal<const N: usize>;
Expand description
Algorithm handle for the grouped ElGamal encryption
Implementations§
Source§impl<const N: usize> GroupedElGamal<N>
impl<const N: usize> GroupedElGamal<N>
Sourcepub fn encrypt<T: Into<Scalar>>(
pubkeys: [&ElGamalPubkey; N],
amount: T,
) -> GroupedElGamalCiphertext<N>
pub fn encrypt<T: Into<Scalar>>( pubkeys: [&ElGamalPubkey; N], amount: T, ) -> GroupedElGamalCiphertext<N>
Encrypts an amount under an array of ElGamal public keys.
This function is randomized. It internally samples a scalar element using OsRng
.
Sourcepub fn encrypt_with<T: Into<Scalar>>(
pubkeys: [&ElGamalPubkey; N],
amount: T,
opening: &PedersenOpening,
) -> GroupedElGamalCiphertext<N>
pub fn encrypt_with<T: Into<Scalar>>( pubkeys: [&ElGamalPubkey; N], amount: T, opening: &PedersenOpening, ) -> GroupedElGamalCiphertext<N>
Encrypts an amount under an array of ElGamal public keys using a specified Pedersen opening.
Auto Trait Implementations§
impl<const N: usize> Freeze for GroupedElGamal<N>
impl<const N: usize> RefUnwindSafe for GroupedElGamal<N>
impl<const N: usize> Send for GroupedElGamal<N>
impl<const N: usize> Sync for GroupedElGamal<N>
impl<const N: usize> Unpin for GroupedElGamal<N>
impl<const N: usize> UnwindSafe for GroupedElGamal<N>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more