Struct safe_token_2022::extension::confidential_transfer::instruction::transfer::TransferProof
source · pub struct TransferProof {
pub new_source_commitment: PedersenCommitment,
pub equality_proof: CtxtCommEqualityProof,
pub validity_proof: AggregatedValidityProof,
pub range_proof: RangeProof128,
}
Fields§
§new_source_commitment: PedersenCommitment
New Pedersen commitment for the remaining balance in source
equality_proof: CtxtCommEqualityProof
Associated equality proof
validity_proof: AggregatedValidityProof
Associated ciphertext validity proof
range_proof: RangeProof128
Implementations§
source§impl TransferProof
impl TransferProof
pub fn new( _: (u64, u64), source_keypair: &ElGamalKeypair, _: (&ElGamalPubkey, &ElGamalPubkey), opening_lo: &PedersenOpening, opening_hi: &PedersenOpening, _: (u64, &ElGamalCiphertext), transcript: &mut Transcript ) -> TransferProof
pub fn verify( &self, ciphertext_lo: &TransferAmountEncryption, ciphertext_hi: &TransferAmountEncryption, transfer_pubkeys: &TransferPubkeys, ciphertext_new_spendable: &ElGamalCiphertext, transcript: &mut Transcript ) -> Result<(), ProofError>
Trait Implementations§
source§impl Clone for TransferProof
impl Clone for TransferProof
source§fn clone(&self) -> TransferProof
fn clone(&self) -> TransferProof
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 moreimpl Copy for TransferProof
impl Pod for TransferProof
Auto Trait Implementations§
impl RefUnwindSafe for TransferProof
impl Send for TransferProof
impl Sync for TransferProof
impl Unpin for TransferProof
impl UnwindSafe for TransferProof
Blanket Implementations§
source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere T: AnyBitPattern,
§type Bits = T
type Bits = T
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
.source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self
.