From 0d39bb9f2d749440bbbc2a91e53ca5dc05cff889 Mon Sep 17 00:00:00 2001 From: Florian Duros Date: Thu, 6 Feb 2025 11:54:00 +0100 Subject: [PATCH 1/2] chore(crypto): remove unused types --- src/@types/crypto.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/@types/crypto.ts b/src/@types/crypto.ts index a8836d52cb..fa8dd228e8 100644 --- a/src/@types/crypto.ts +++ b/src/@types/crypto.ts @@ -16,11 +16,6 @@ limitations under the License. import type { ISignatures } from "./signed.ts"; -export type OlmGroupSessionExtraData = { - untrusted?: boolean; - sharedHistory?: boolean; -}; - // Backwards compatible re-export export type { EventDecryptionResult as IEventDecryptionResult } from "../common-crypto/CryptoBackend.ts"; From a8458180a97e1f7a7868441cc7e3d962d769ff0d Mon Sep 17 00:00:00 2001 From: Florian Duros Date: Thu, 6 Feb 2025 12:06:49 +0100 Subject: [PATCH 2/2] doc(crypto): add missing link --- src/rust-crypto/backup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rust-crypto/backup.ts b/src/rust-crypto/backup.ts index d4bda400cc..342055163a 100644 --- a/src/rust-crypto/backup.ts +++ b/src/rust-crypto/backup.ts @@ -118,7 +118,7 @@ export class RustBackupManager extends TypedEventEmitter { const signatureVerification: SignatureVerification = await this.olmMachine.verifyBackup(info);