You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// * `content` - The content of the event that should be encrypted.
pub(crate)asyncfnencrypt(
This can lead to a strange situation when the exclude insecure devices option is enabled and:
Sharing a room key won't work for a given device
Encrypting directly to this device would work
Maybe we would want to use some EncryptionSetting/DecryptionSetting for olm traffic?
Notice that we also don't look at the device trust status BlackListed/Ignored when encrypting in olm
The text was updated successfully, but these errors were encountered:
Following the work on invisible crypto it is now possible to exclude devices not signed by their owner from participating in encrypted room:
We also have an API to encrypt a message directly to a device (using olm):
matrix-rust-sdk/crates/matrix-sdk-crypto/src/identities/device.rs
Lines 407 to 412 in bdfe641
This can lead to a strange situation when the
exclude insecure devices
option is enabled and:Maybe we would want to use some
EncryptionSetting
/DecryptionSetting
for olm traffic?Notice that we also don't look at the device trust status
BlackListed
/Ignored
when encrypting in olmThe text was updated successfully, but these errors were encountered: