forked from mystiq/hydrogen-web
move types to separate file
This commit is contained in:
parent
85155a43bb
commit
a791641b34
3 changed files with 62 additions and 44 deletions
|
@ -17,7 +17,7 @@ limitations under the License.
|
||||||
import {MEGOLM_ALGORITHM} from "../../common";
|
import {MEGOLM_ALGORITHM} from "../../common";
|
||||||
import type {RoomKey} from "../decryption/RoomKey";
|
import type {RoomKey} from "../decryption/RoomKey";
|
||||||
|
|
||||||
import type {BaseBackupInfo, SignatureMap, SessionKeyInfo} from "./KeyBackup";
|
import type {BaseBackupInfo, SignatureMap, SessionKeyInfo} from "./types";
|
||||||
import type * as OlmNamespace from "@matrix-org/olm";
|
import type * as OlmNamespace from "@matrix-org/olm";
|
||||||
type Olm = typeof OlmNamespace;
|
type Olm = typeof OlmNamespace;
|
||||||
|
|
||||||
|
|
|
@ -30,49 +30,6 @@ import type {Transaction} from "../../../storage/idb/Transaction";
|
||||||
import type * as OlmNamespace from "@matrix-org/olm";
|
import type * as OlmNamespace from "@matrix-org/olm";
|
||||||
type Olm = typeof OlmNamespace;
|
type Olm = typeof OlmNamespace;
|
||||||
|
|
||||||
export type SignatureMap = {
|
|
||||||
[userId: string]: {[deviceIdAndAlgorithm: string]: string}
|
|
||||||
}
|
|
||||||
|
|
||||||
export type BaseBackupInfo = {
|
|
||||||
version: string,
|
|
||||||
etag: string,
|
|
||||||
count: number,
|
|
||||||
}
|
|
||||||
|
|
||||||
type OtherBackupInfo = BaseBackupInfo & {
|
|
||||||
algorithm: "other"
|
|
||||||
};
|
|
||||||
|
|
||||||
type BackupInfo = Curve25519.BackupInfo | OtherBackupInfo;
|
|
||||||
type SessionData = Curve25519.SessionData;
|
|
||||||
|
|
||||||
type SessionInfo = {
|
|
||||||
first_message_index: number,
|
|
||||||
forwarded_count: number,
|
|
||||||
is_verified: boolean,
|
|
||||||
session_data: SessionData
|
|
||||||
}
|
|
||||||
|
|
||||||
type MegOlmSessionKeyInfo = {
|
|
||||||
algorithm: MEGOLM_ALGORITHM,
|
|
||||||
sender_key: string,
|
|
||||||
sender_claimed_keys: {[algorithm: string]: string},
|
|
||||||
forwarding_curve25519_key_chain: string[],
|
|
||||||
session_key: string
|
|
||||||
}
|
|
||||||
|
|
||||||
// the type that session_data decrypts from / encrypts to
|
|
||||||
export type SessionKeyInfo = MegOlmSessionKeyInfo | {algorithm: string};
|
|
||||||
|
|
||||||
type KeyBackupPayload = {
|
|
||||||
rooms: {
|
|
||||||
[roomId: string]: {
|
|
||||||
sessions: {[sessionId: string]: SessionInfo}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export class KeyBackup {
|
export class KeyBackup {
|
||||||
constructor(
|
constructor(
|
||||||
private readonly backupInfo: BackupInfo,
|
private readonly backupInfo: BackupInfo,
|
||||||
|
|
61
src/matrix/e2ee/megolm/keybackup/types.ts
Normal file
61
src/matrix/e2ee/megolm/keybackup/types.ts
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
/*
|
||||||
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import type * as Curve25519 from "./Curve25519";
|
||||||
|
import type {MEGOLM_ALGORITHM} from "../../common";
|
||||||
|
|
||||||
|
export type SignatureMap = {
|
||||||
|
[userId: string]: {[deviceIdAndAlgorithm: string]: string}
|
||||||
|
}
|
||||||
|
|
||||||
|
export type BaseBackupInfo = {
|
||||||
|
version: string,
|
||||||
|
etag: string,
|
||||||
|
count: number,
|
||||||
|
}
|
||||||
|
|
||||||
|
export type OtherBackupInfo = BaseBackupInfo & {
|
||||||
|
algorithm: "other"
|
||||||
|
};
|
||||||
|
|
||||||
|
export type BackupInfo = Curve25519.BackupInfo | OtherBackupInfo;
|
||||||
|
export type SessionData = Curve25519.SessionData;
|
||||||
|
|
||||||
|
export type SessionInfo = {
|
||||||
|
first_message_index: number,
|
||||||
|
forwarded_count: number,
|
||||||
|
is_verified: boolean,
|
||||||
|
session_data: SessionData
|
||||||
|
}
|
||||||
|
|
||||||
|
export type MegOlmSessionKeyInfo = {
|
||||||
|
algorithm: MEGOLM_ALGORITHM,
|
||||||
|
sender_key: string,
|
||||||
|
sender_claimed_keys: {[algorithm: string]: string},
|
||||||
|
forwarding_curve25519_key_chain: string[],
|
||||||
|
session_key: string
|
||||||
|
}
|
||||||
|
|
||||||
|
// the type that session_data decrypts from / encrypts to
|
||||||
|
export type SessionKeyInfo = MegOlmSessionKeyInfo | {algorithm: string};
|
||||||
|
|
||||||
|
export type KeyBackupPayload = {
|
||||||
|
rooms: {
|
||||||
|
[roomId: string]: {
|
||||||
|
sessions: {[sessionId: string]: SessionInfo}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue