Struct mpc_engine::primitives::commitment::Commitment
source · pub struct Commitment { /* private fields */ }
Expand description
A Commitment to some value.
Implementations§
source§impl Commitment
impl Commitment
sourcepub fn new(
value: &[u8],
domain_separator: &[u8],
entropy: &mut Randomness
) -> (Self, Opening)
pub fn new( value: &[u8], domain_separator: &[u8], entropy: &mut Randomness ) -> (Self, Opening)
Commit to a value.
Given input value value
, samples a random bitstring r
of length
STATISTICAL_SECURITY
and returns a domain separated commitment
H(value||r)
as well as the corresponding opening.
sourcepub fn open(&self, opening: &Opening) -> Result<Vec<u8>, Error>
pub fn open(&self, opening: &Opening) -> Result<Vec<u8>, Error>
Open the commitment, returning the committed value, if successful.
sourcepub fn as_bytes(&self) -> Vec<u8>
pub fn as_bytes(&self) -> Vec<u8>
Serialize a commitment to a byte vector.
The serialization format is commitment || len(dst) || dst_bytes
, where the length is represented as big-endian
byte arrays.
sourcepub fn from_bytes(bytes: &[u8]) -> Result<(Self, Vec<u8>), Error>
pub fn from_bytes(bytes: &[u8]) -> Result<(Self, Vec<u8>), Error>
Deserialize a commitment from a serialization created using Commitment::as_bytes.
Trait Implementations§
source§impl Clone for Commitment
impl Clone for Commitment
source§fn clone(&self) -> Commitment
fn clone(&self) -> Commitment
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for Commitment
impl RefUnwindSafe for Commitment
impl Send for Commitment
impl Sync for Commitment
impl Unpin for Commitment
impl UnwindSafe for Commitment
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