#[repr(C)]pub struct PubkeyValidityData {
pub pubkey: ElGamalPubkey,
pub proof: PubkeyValidityProof,
}
Expand description
This struct includes the cryptographic proof and the account data information needed to verify the proof
- The pre-instruction should call PubkeyValidityData::verify_proof(&self)
- The actual program should check that the public key in this struct is consistent with what is stored in the confidential token account
Fields§
§pubkey: ElGamalPubkey
The public key to be proved
proof: PubkeyValidityProof
Proof that the public key is well-formed
Implementations§
source§impl PubkeyValidityData
impl PubkeyValidityData
pub fn new(keypair: &ElGamalKeypair) -> Result<Self, ProofError>
Trait Implementations§
source§impl Clone for PubkeyValidityData
impl Clone for PubkeyValidityData
source§fn clone(&self) -> PubkeyValidityData
fn clone(&self) -> PubkeyValidityData
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 moresource§impl Verifiable for PubkeyValidityData
impl Verifiable for PubkeyValidityData
impl Copy for PubkeyValidityData
impl Pod for PubkeyValidityData
Auto Trait Implementations§
impl RefUnwindSafe for PubkeyValidityData
impl Send for PubkeyValidityData
impl Sync for PubkeyValidityData
impl Unpin for PubkeyValidityData
impl UnwindSafe for PubkeyValidityData
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
.