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 From<[u8; 16]> for AeKey

Source§

fn from(bytes: [u8; 16]) -> Self

Converts to this type from the input type.
Source§

impl From<AeKey> for [u8; 16]

Source§

fn from(key: AeKey) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for AeKey

Source§

fn eq(&self, other: &AeKey) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
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 TryFrom<&[u8]> for AeKey

Source§

type Error = AuthenticatedEncryptionError

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

fn try_from(bytes: &[u8]) -> Result<Self, Self::Error>

Performs the conversion.
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.
Source§

impl Eq for AeKey

Source§

impl StructuralPartialEq for AeKey

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> 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<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. 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> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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>,

Source§

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