Struct vodozemac::ecies::EstablishedEcies

source ·
pub struct EstablishedEcies { /* private fields */ }
Expand description

An established ECIES session.

This session can be used to encrypt and decrypt messages between the two sides of the channel.

Implementations§

source§

impl EstablishedEcies

source

pub fn public_key(&self) -> Curve25519PublicKey

Get our Curve25519PublicKey.

This public key needs to be sent to the other side so that it can complete the ECIES channel establishment.

source

pub fn check_code(&self) -> &CheckCode

Get the CheckCode which uniquely identifies this EstablishedEcies session.

This check code can be used to check that both sides of the session are indeed using the same shared secret.

source

pub fn encrypt(&mut self, plaintext: &[u8]) -> Message

Encrypt the given plaintext using this EstablishedEcies session.

source

pub fn decrypt(&mut self, message: &Message) -> Result<Vec<u8>, Error>

Decrypt the given message using this EstablishedEcies session.

Trait Implementations§

source§

impl Debug for EstablishedEcies

source§

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

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

impl Drop for EstablishedEcies

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl Zeroize for EstablishedEcies

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§

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