Struct matrix_sdk_crypto::store::Store
source · pub struct Store { /* private fields */ }
Expand description
A wrapper for our CryptoStore trait object.
This is needed because we want to have a generic interface so we can store/restore objects that we can serialize. Since trait objects and generics don’t mix let the CryptoStore store strings and this wrapper adds the generic interface on top.
Implementations§
source§impl Store
impl Store
sourcepub async fn export_secret(
&self,
secret_name: &SecretName,
) -> Result<Option<String>, CryptoStoreError>
pub async fn export_secret( &self, secret_name: &SecretName, ) -> Result<Option<String>, CryptoStoreError>
Try to export the secret with the given secret name.
The exported secret will be encoded as unpadded base64. Returns Null
if the secret can’t be found.
§Arguments
secret_name
- The name of the secret that should be exported.
sourcepub async fn export_cross_signing_keys(
&self,
) -> Result<Option<CrossSigningKeyExport>, CryptoStoreError>
pub async fn export_cross_signing_keys( &self, ) -> Result<Option<CrossSigningKeyExport>, CryptoStoreError>
Export all the private cross signing keys we have.
The export will contain the seed for the ed25519 keys as a unpadded base64 encoded string.
This method returns None
if we don’t have any private cross signing
keys.
sourcepub async fn import_cross_signing_keys(
&self,
export: CrossSigningKeyExport,
) -> Result<CrossSigningStatus, SecretImportError>
pub async fn import_cross_signing_keys( &self, export: CrossSigningKeyExport, ) -> Result<CrossSigningStatus, SecretImportError>
Import our private cross signing keys.
The export needs to contain the seed for the Ed25519 keys as an unpadded base64 encoded string.
sourcepub async fn export_secrets_bundle(
&self,
) -> Result<SecretsBundle, SecretsBundleExportError>
pub async fn export_secrets_bundle( &self, ) -> Result<SecretsBundle, SecretsBundleExportError>
Export all the secrets we have in the store into a SecretsBundle
.
This method will export all the private cross-signing keys and, if available, the private part of a backup key and its accompanying version.
The method will fail if we don’t have all three private cross-signing keys available.
Warning: Only export this and share it with a trusted recipient, i.e. if an existing device is sharing this with a new device.
sourcepub async fn import_secrets_bundle(
&self,
bundle: &SecretsBundle,
) -> Result<(), SecretImportError>
pub async fn import_secrets_bundle( &self, bundle: &SecretsBundle, ) -> Result<(), SecretImportError>
Import and persists secrets from a SecretsBundle
.
This method will import all the private cross-signing keys and, if available, the private part of a backup key and its accompanying version into the store.
Warning: Only import this from a trusted source, i.e. if an existing
device is sharing this with a new device. The imported cross-signing
keys will create a OwnUserIdentity
and mark it as verified.
The backup key will be persisted in the store and can be enabled using
the BackupMachine
.
sourcepub async fn import_secret(
&self,
secret: &GossippedSecret,
) -> Result<(), SecretImportError>
pub async fn import_secret( &self, secret: &GossippedSecret, ) -> Result<(), SecretImportError>
Import the given secret
named secret_name
into the keystore.
sourcepub async fn get_only_allow_trusted_devices(&self) -> Result<bool>
pub async fn get_only_allow_trusted_devices(&self) -> Result<bool>
Check whether there is a global flag to only encrypt messages for trusted devices or for everyone.
sourcepub async fn set_only_allow_trusted_devices(
&self,
block_untrusted_devices: bool,
) -> Result<()>
pub async fn set_only_allow_trusted_devices( &self, block_untrusted_devices: bool, ) -> Result<()>
Set global flag whether to encrypt messages for untrusted devices, or whether they should be excluded from the conversation.
sourcepub async fn get_value<T: DeserializeOwned>(
&self,
key: &str,
) -> Result<Option<T>>
pub async fn get_value<T: DeserializeOwned>( &self, key: &str, ) -> Result<Option<T>>
Get custom stored value associated with a key
sourcepub async fn set_value(&self, key: &str, value: &impl Serialize) -> Result<()>
pub async fn set_value(&self, key: &str, value: &impl Serialize) -> Result<()>
Store custom value associated with a key
sourcepub fn room_keys_received_stream(&self) -> impl Stream<Item = Vec<RoomKeyInfo>>
pub fn room_keys_received_stream(&self) -> impl Stream<Item = Vec<RoomKeyInfo>>
Receive notifications of room keys being received as a Stream
.
Each time a room key is updated in any way, an update will be sent to
the stream. Updates that happen at the same time are batched into a
Vec
.
If the reader of the stream lags too far behind, a warning will be logged and items will be dropped.
The stream will terminate once all references to the underlying
CryptoStoreWrapper
are dropped.
sourcepub fn room_keys_withheld_received_stream(
&self,
) -> impl Stream<Item = Vec<RoomKeyWithheldInfo>>
pub fn room_keys_withheld_received_stream( &self, ) -> impl Stream<Item = Vec<RoomKeyWithheldInfo>>
Receive notifications of received m.room_key.withheld
messages.
Each time an m.room_key.withheld
is received and stored, an update
will be sent to the stream. Updates that happen at the same time are
batched into a Vec
.
If the reader of the stream lags too far behind, a warning will be logged and items will be dropped.
sourcepub fn user_identities_stream(&self) -> impl Stream<Item = IdentityUpdates>
pub fn user_identities_stream(&self) -> impl Stream<Item = IdentityUpdates>
Returns a stream of user identity updates, allowing users to listen for notifications about new or changed user identities.
The stream produced by this method emits updates whenever a new user identity is discovered or when an existing identities information is changed. Users can subscribe to this stream and receive updates in real-time.
Caution: the returned stream will never terminate, and it holds a
reference to the CryptoStore
. Listeners should be careful to avoid
resource leaks.
§Examples
let identities_stream = machine.store().user_identities_stream();
pin_mut!(identities_stream);
for identity_updates in identities_stream.next().await {
for (_, identity) in identity_updates.new {
println!("A new identity has been added {}", identity.user_id());
}
}
sourcepub fn devices_stream(&self) -> impl Stream<Item = DeviceUpdates>
pub fn devices_stream(&self) -> impl Stream<Item = DeviceUpdates>
Returns a stream of device updates, allowing users to listen for notifications about new or changed devices.
The stream produced by this method emits updates whenever a new device is discovered or when an existing device’s information is changed. Users can subscribe to this stream and receive updates in real-time.
Caution: the returned stream will never terminate, and it holds a
reference to the CryptoStore
. Listeners should be careful to avoid
resource leaks.
§Examples
let devices_stream = machine.store().devices_stream();
pin_mut!(devices_stream);
for device_updates in devices_stream.next().await {
if let Some(user_devices) = device_updates.new.get(machine.user_id()) {
for device in user_devices.values() {
println!("A new device has been added {}", device.device_id());
}
}
}
sourcepub fn identities_stream_raw(
&self,
) -> impl Stream<Item = (IdentityChanges, DeviceChanges)>
pub fn identities_stream_raw( &self, ) -> impl Stream<Item = (IdentityChanges, DeviceChanges)>
Returns a Stream
of user identity and device updates
The stream returned by this method returns the same data as
Store::user_identities_stream
and Store::devices_stream
but does
not include references to the VerificationMachine
. It is therefore a
lower-level view on that data.
The stream will terminate once all references to the underlying
CryptoStoreWrapper
are dropped.
sourcepub fn create_store_lock(
&self,
lock_key: String,
lock_value: String,
) -> CrossProcessStoreLock<LockableCryptoStore>
pub fn create_store_lock( &self, lock_key: String, lock_value: String, ) -> CrossProcessStoreLock<LockableCryptoStore>
Creates a CrossProcessStoreLock
for this store, that will contain the
given key and value when hold.
sourcepub fn secrets_stream(&self) -> impl Stream<Item = GossippedSecret>
pub fn secrets_stream(&self) -> impl Stream<Item = GossippedSecret>
Receive notifications of gossipped secrets being received and stored in
the secret inbox as a Stream
.
The gossipped secrets are received using the m.secret.send
event type
and are guaranteed to have been received over a 1-to-1 Olm
Session
from a verified Device
.
The GossippedSecret
can also be later found in the secret inbox and
retrieved using the CryptoStore::get_secrets_from_inbox()
method.
After a suitable secret of a certain type has been found it can be
removed from the store
using the CryptoStore::delete_secrets_from_inbox()
method.
The only secret this will currently broadcast is the
m.megolm_backup.v1
.
If the reader of the stream lags too far behind, a warning will be logged and items will be dropped.
§Examples
let secret_stream = machine.store().secrets_stream();
pin_mut!(secret_stream);
for secret in secret_stream.next().await {
// Accept the secret if it's valid, then delete all the secrets of this type.
machine.store().delete_secrets_from_inbox(&secret.secret_name);
}
sourcepub async fn import_room_keys(
&self,
exported_keys: Vec<ExportedRoomKey>,
from_backup_version: Option<&str>,
progress_listener: impl Fn(usize, usize),
) -> Result<RoomKeyImportResult>
pub async fn import_room_keys( &self, exported_keys: Vec<ExportedRoomKey>, from_backup_version: Option<&str>, progress_listener: impl Fn(usize, usize), ) -> Result<RoomKeyImportResult>
Import the given room keys into the store.
§Arguments
exported_keys
- The keys to be imported.from_backup_version
- If the keys came from key backup, the key backup version. This will cause the keys to be marked as already backed up, and therefore not requiring another backup.progress_listener
- Callback which will be called after each key is processed. Called with arguments(processed, total)
whereprocessed
is the number of keys processed so far, andtotal
is the total number of keys (i.e.,exported_keys.len()
).
sourcepub async fn import_exported_room_keys(
&self,
exported_keys: Vec<ExportedRoomKey>,
progress_listener: impl Fn(usize, usize),
) -> Result<RoomKeyImportResult>
pub async fn import_exported_room_keys( &self, exported_keys: Vec<ExportedRoomKey>, progress_listener: impl Fn(usize, usize), ) -> Result<RoomKeyImportResult>
Import the given room keys into our store.
§Arguments
exported_keys
- A list of previously exported keys that should be imported into our store. If we already have a better version of a key the key will not be imported.
Returns a tuple of numbers that represent the number of sessions that were imported and the total number of sessions that were found in the key export.
§Examples
let exported_keys = decrypt_room_key_export(export, "1234").unwrap();
machine.store().import_exported_room_keys(exported_keys, |_, _| {}).await.unwrap();
sourcepub async fn export_room_keys(
&self,
predicate: impl FnMut(&InboundGroupSession) -> bool,
) -> Result<Vec<ExportedRoomKey>>
pub async fn export_room_keys( &self, predicate: impl FnMut(&InboundGroupSession) -> bool, ) -> Result<Vec<ExportedRoomKey>>
Export the keys that match the given predicate.
§Arguments
predicate
- A closure that will be called for every knownInboundGroupSession
, which represents a room key. If the closure returnstrue
theInboundGroupSession
will be included in the export, if the closure returnsfalse
it will not be included.
§Examples
let room_id = room_id!("!test:localhost");
let exported_keys = machine.store().export_room_keys(|s| s.room_id() == room_id).await.unwrap();
let encrypted_export = encrypt_room_key_export(&exported_keys, "1234", 1);
sourcepub async fn export_room_keys_stream(
&self,
predicate: impl FnMut(&InboundGroupSession) -> bool,
) -> Result<impl Stream<Item = ExportedRoomKey>>
pub async fn export_room_keys_stream( &self, predicate: impl FnMut(&InboundGroupSession) -> bool, ) -> Result<impl Stream<Item = ExportedRoomKey>>
Export room keys matching a predicate, providing them as an async
Stream
.
§Arguments
predicate
- A closure that will be called for every knownInboundGroupSession
, which represents a room key. If the closure returnstrue
theInboundGroupSession
will be included in the export, if the closure returnsfalse
it will not be included.
§Examples
use std::pin::pin;
use matrix_sdk_crypto::{olm::ExportedRoomKey, OlmMachine};
use ruma::{device_id, room_id, user_id};
use tokio_stream::StreamExt;
let alice = user_id!("@alice:example.org");
let machine = OlmMachine::new(&alice, device_id!("DEVICEID")).await;
let room_id = room_id!("!test:localhost");
let mut keys = pin!(machine
.store()
.export_room_keys_stream(|s| s.room_id() == room_id)
.await
.unwrap());
while let Some(key) = keys.next().await {
println!("{}", key.room_id);
}
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Store
impl !RefUnwindSafe for Store
impl Send for Store
impl Sync for Store
impl Unpin for Store
impl !UnwindSafe for Store
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<T> CompatExt for T
impl<T> CompatExt for T
source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Arc<>
source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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