Struct cryptid::commit::PedersenCtx [−][src]
pub struct PedersenCtx { /* fields omitted */ }
Expand description
A Pedersen commitment context, composed of a pair of independent, verifiably-chosen group generators.
Implementations
impl PedersenCtx
[src]
impl PedersenCtx
[src]pub fn with_generators(
seed: &[u8],
num_generators: usize
) -> (PedersenCtx, Vec<CurveElem>)
[src]
pub fn with_generators(
seed: &[u8],
num_generators: usize
) -> (PedersenCtx, Vec<CurveElem>)
[src]Creates a Pedersen commitment context, with a number of additional generators for extended commitments. Returns a pair containing the context and a vector of extra generators.
Generators are chosen verifiably by hashing the seed.
pub fn new(seed: &[u8]) -> Self
[src]
pub fn new(seed: &[u8]) -> Self
[src]Create a new Pedersen commitment context without any extra generators.
pub fn commit(&self, x: &Scalar, r: &Scalar) -> Commitment
[src]
pub fn commit(&self, x: &Scalar, r: &Scalar) -> Commitment
[src]Commit to the chosen pair of values.
pub fn commit_ct(&self, ct: &Ciphertext, rs: &(Scalar, Scalar)) -> CtCommitment
[src]
Trait Implementations
impl Clone for PedersenCtx
[src]
impl Clone for PedersenCtx
[src]fn clone(&self) -> PedersenCtx
[src]
fn clone(&self) -> PedersenCtx
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl RefUnwindSafe for PedersenCtx
impl Send for PedersenCtx
impl Sync for PedersenCtx
impl Unpin for PedersenCtx
impl UnwindSafe for PedersenCtx
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> Pointable for T
[src]
impl<T> Pointable for T
[src]impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more