pub struct Session {
    pub user_id: OwnedUserId,
    pub device_id: OwnedDeviceId,
    pub our_identity_keys: Arc<IdentityKeys>,
    pub inner: Arc<Mutex<Session>>,
    pub session_id: Arc<str>,
    pub sender_key: Curve25519PublicKey,
    pub created_using_fallback_key: bool,
    pub creation_time: SecondsSinceUnixEpoch,
    pub last_use_time: SecondsSinceUnixEpoch,
}
Expand description

Cryptographic session that enables secure communication between two Accounts

Fields§

§user_id: OwnedUserId

The UserId associated with this session

§device_id: OwnedDeviceId

The specific DeviceId associated with this session

§our_identity_keys: Arc<IdentityKeys>

The IdentityKeys associated with this session

§inner: Arc<Mutex<Session>>

The OlmSession

§session_id: Arc<str>

Our sessionId

§sender_key: Curve25519PublicKey

The Key of the sender

§created_using_fallback_key: bool

Has this been created using the fallback key

§creation_time: SecondsSinceUnixEpoch

When the session was created

§last_use_time: SecondsSinceUnixEpoch

When the session was last used

Implementations§

source§

impl Session

source

pub async fn decrypt( &mut self, message: &OlmMessage ) -> Result<String, DecryptionError>

Decrypt the given Olm message.

Returns the decrypted plaintext or a DecryptionError if decryption failed.

Arguments
  • message - The Olm message that should be decrypted.
source

pub fn sender_key(&self) -> Curve25519PublicKey

Get the sender key that was used to establish this Session.

source

pub async fn session_config(&self) -> SessionConfig

Get the SessionConfig that this session is using.

source

pub async fn algorithm(&self) -> EventEncryptionAlgorithm

source

pub async fn encrypt( &mut self, recipient_device: &ReadOnlyDevice, event_type: &str, content: impl Serialize, message_id: Option<String> ) -> Result<Raw<ToDeviceEncryptedEventContent>, OlmError>

Encrypt the given event content content as an m.room.encrypted event content.

Arguments
  • recipient_device - The device for which this message is going to be encrypted, this needs to be the device that was used to create this session with.

  • event_type - The type of the event content.

  • content - The content of the event.

source

pub fn session_id(&self) -> &str

Returns the unique identifier for this session.

source

pub async fn pickle(&self) -> PickledSession

Store the session as a base64 encoded string.

Arguments
  • pickle_mode - The mode that was used to pickle the session, either an unencrypted mode or an encrypted using passphrase.
source

pub fn from_pickle( user_id: OwnedUserId, device_id: OwnedDeviceId, our_identity_keys: Arc<IdentityKeys>, pickle: PickledSession ) -> Self

Restore a Session from a previously pickled string.

Returns the restored Olm Session or a SessionUnpicklingError if there was an error.

Arguments
  • user_id - Our own user id that the session belongs to.

  • device_id - Our own device ID that the session belongs to.

  • our_identity_keys - An clone of the Arc to our own identity keys.

  • pickle - The pickled version of the Session.

  • pickle_mode - The mode that was used to pickle the session, either an unencrypted mode or an encrypted using passphrase.

Trait Implementations§

source§

impl Clone for Session

source§

fn clone(&self) -> Session

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Session

Available on non-tarpaulin_include only.
source§

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

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

impl PartialEq for Session

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

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.

§

impl<T, W> HasTypeWitness<W> for T
where W: MakeTypeWitness<Arg = T>, T: ?Sized,

§

const WITNESS: W = W::MAKE

A constant of the type witness
§

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

§

type Type = T

The same type as Self, used to emulate type equality bounds (T == U) with associated type equality constraints (T: Identity<Type = U>).
§

const TYPE_EQ: TypeEq<T, <T as Identity>::Type> = TypeEq::NEW

Proof that Self is the same type as Self::Type, provides methods for casting between Self and Self::Type.
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.
§

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

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> AsyncTraitDeps for T

source§

impl<T> SendOutsideWasm for T
where T: Send,

source§

impl<T> SyncOutsideWasm for T
where T: Sync,