From e835d9a1cc1b27017be640f0fe660e28628dbd2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Mon, 4 Sep 2023 14:47:02 +0200 Subject: [PATCH] The export_room_key method does not encrypt the room keys nor does it panic --- crates/matrix-sdk-crypto/src/machine.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/crates/matrix-sdk-crypto/src/machine.rs b/crates/matrix-sdk-crypto/src/machine.rs index 5c0cc9fad..ea6ed0bf0 100644 --- a/crates/matrix-sdk-crypto/src/machine.rs +++ b/crates/matrix-sdk-crypto/src/machine.rs @@ -1675,11 +1675,6 @@ impl OlmMachine { /// returns `true` the `InboundGroupSession` will be included in the export, /// if the closure returns `false` it will not be included. /// - /// # Panics - /// - /// This method will panic if it can't get enough randomness from the OS to - /// encrypt the exported keys securely. - /// /// # Examples /// /// ```no_run