#[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
sourceimpl PubkeyValidityData
impl PubkeyValidityData
pub fn new(keypair: &ElGamalKeypair) -> Result<Self, ProofError>
Trait Implementations
sourceimpl Clone for PubkeyValidityData
impl Clone for PubkeyValidityData
sourcefn clone(&self) -> PubkeyValidityData
fn clone(&self) -> PubkeyValidityData
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Verifiable for PubkeyValidityData
impl Verifiable for PubkeyValidityData
fn verify(&self) -> Result<(), ProofError>
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
impl<T> AbiExample for T
impl<T> AbiExample for T
default fn example() -> T
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<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
. Read more