pub struct AeKey(/* private fields */);

Implementations§

source§

impl AeKey

source

pub fn new_from_signer( signer: &dyn Signer, public_seed: &[u8] ) -> Result<Self, Box<dyn Error>>

Deterministically derives an authenticated encryption key from a Solana signer and a public seed.

This function exists for applications where a user may not wish to maintain a Solana signer and an authenticated encryption key separately. Instead, a user can derive the ElGamal keypair on-the-fly whenever encrytion/decryption is needed.

source

pub fn seed_from_signer( signer: &dyn Signer, public_seed: &[u8] ) -> Result<Vec<u8>, SignerError>

Derive a seed from a Solana signer used to generate an authenticated encryption key.

The seed is derived as the hash of the signature of a public seed.

source

pub fn new_rand() -> Self

Generates a random authenticated encryption key.

This function is randomized. It internally samples a scalar element using OsRng.

source

pub fn encrypt(&self, amount: u64) -> AeCiphertext

Encrypts an amount under the authenticated encryption key.

source

pub fn decrypt(&self, ciphertext: &AeCiphertext) -> Option<u64>

Trait Implementations§

source§

impl Debug for AeKey

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl EncodableKey for AeKey

source§

fn read<R: Read>(reader: &mut R) -> Result<Self, Box<dyn Error>>

source§

fn write<W: Write>(&self, writer: &mut W) -> Result<String, Box<dyn Error>>

source§

fn read_from_file<F>(path: F) -> Result<Self, Box<dyn Error>>
where F: AsRef<Path>,

source§

fn write_to_file<F>(&self, outfile: F) -> Result<String, Box<dyn Error>>
where F: AsRef<Path>,

source§

impl SeedDerivable for AeKey

source§

fn from_seed(seed: &[u8]) -> Result<Self, Box<dyn Error>>

source§

fn from_seed_and_derivation_path( _seed: &[u8], _derivation_path: Option<DerivationPath> ) -> Result<Self, Box<dyn Error>>

source§

fn from_seed_phrase_and_passphrase( seed_phrase: &str, passphrase: &str ) -> Result<Self, Box<dyn Error>>

source§

impl Zeroize for AeKey

source§

fn zeroize(&mut self)

Zero out this object from memory using Rust intrinsics which ensure the zeroization operation is not “optimized away” by the compiler.

Auto Trait Implementations§

§

impl Freeze for AeKey

§

impl RefUnwindSafe for AeKey

§

impl Send for AeKey

§

impl Sync for AeKey

§

impl Unpin for AeKey

§

impl UnwindSafe for AeKey

Blanket Implementations§

source§

impl<T> AbiExample for T

source§

default fn example() -> T

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V