157 lines
4 KiB
TypeScript
157 lines
4 KiB
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
/* eslint-disable max-classes-per-file */
|
|
/* eslint-disable class-methods-use-this */
|
|
|
|
import { isNumber } from 'lodash';
|
|
|
|
import {
|
|
Direction,
|
|
ProtocolAddress,
|
|
SessionStore,
|
|
SessionRecord,
|
|
IdentityKeyStore,
|
|
PreKeyRecord,
|
|
PreKeyStore,
|
|
PrivateKey,
|
|
PublicKey,
|
|
SignedPreKeyStore,
|
|
SignedPreKeyRecord,
|
|
} from 'libsignal-client';
|
|
import { freezePreKey, freezeSignedPreKey } from './SignalProtocolStore';
|
|
|
|
import { typedArrayToArrayBuffer } from './Crypto';
|
|
|
|
function encodedNameFromAddress(address: ProtocolAddress): string {
|
|
const name = address.name();
|
|
const deviceId = address.deviceId();
|
|
const encodedName = `${name}.${deviceId}`;
|
|
return encodedName;
|
|
}
|
|
|
|
export class Sessions extends SessionStore {
|
|
async saveSession(
|
|
address: ProtocolAddress,
|
|
record: SessionRecord
|
|
): Promise<void> {
|
|
await window.textsecure.storage.protocol.storeSession(
|
|
encodedNameFromAddress(address),
|
|
record
|
|
);
|
|
}
|
|
|
|
async getSession(name: ProtocolAddress): Promise<SessionRecord | null> {
|
|
const encodedName = encodedNameFromAddress(name);
|
|
const record = await window.textsecure.storage.protocol.loadSession(
|
|
encodedName
|
|
);
|
|
|
|
return record || null;
|
|
}
|
|
}
|
|
|
|
export class IdentityKeys extends IdentityKeyStore {
|
|
async getIdentityKey(): Promise<PrivateKey> {
|
|
const keyPair = await window.textsecure.storage.protocol.getIdentityKeyPair();
|
|
if (!keyPair) {
|
|
throw new Error('IdentityKeyStore/getIdentityKey: No identity key!');
|
|
}
|
|
return PrivateKey.deserialize(Buffer.from(keyPair.privKey));
|
|
}
|
|
|
|
async getLocalRegistrationId(): Promise<number> {
|
|
const id = await window.textsecure.storage.protocol.getLocalRegistrationId();
|
|
if (!isNumber(id)) {
|
|
throw new Error(
|
|
'IdentityKeyStore/getLocalRegistrationId: No registration id!'
|
|
);
|
|
}
|
|
return id;
|
|
}
|
|
|
|
async getIdentity(address: ProtocolAddress): Promise<PublicKey | null> {
|
|
const encodedName = encodedNameFromAddress(address);
|
|
const key = await window.textsecure.storage.protocol.loadIdentityKey(
|
|
encodedName
|
|
);
|
|
|
|
if (!key) {
|
|
return null;
|
|
}
|
|
|
|
return PublicKey.deserialize(Buffer.from(key));
|
|
}
|
|
|
|
async saveIdentity(name: ProtocolAddress, key: PublicKey): Promise<boolean> {
|
|
const encodedName = encodedNameFromAddress(name);
|
|
const publicKey = typedArrayToArrayBuffer(key.serialize());
|
|
return window.textsecure.storage.protocol.saveIdentity(
|
|
encodedName,
|
|
publicKey
|
|
);
|
|
}
|
|
|
|
async isTrustedIdentity(
|
|
name: ProtocolAddress,
|
|
key: PublicKey,
|
|
direction: Direction
|
|
): Promise<boolean> {
|
|
const encodedName = encodedNameFromAddress(name);
|
|
const publicKey = typedArrayToArrayBuffer(key.serialize());
|
|
|
|
return window.textsecure.storage.protocol.isTrustedIdentity(
|
|
encodedName,
|
|
publicKey,
|
|
direction
|
|
);
|
|
}
|
|
}
|
|
|
|
export class PreKeys extends PreKeyStore {
|
|
async savePreKey(id: number, record: PreKeyRecord): Promise<void> {
|
|
await window.textsecure.storage.protocol.storePreKey(
|
|
id,
|
|
freezePreKey(record)
|
|
);
|
|
}
|
|
|
|
async getPreKey(id: number): Promise<PreKeyRecord> {
|
|
const preKey = await window.textsecure.storage.protocol.loadPreKey(id);
|
|
|
|
if (preKey === undefined) {
|
|
throw new Error(`getPreKey: PreKey ${id} not found`);
|
|
}
|
|
|
|
return preKey;
|
|
}
|
|
|
|
async removePreKey(id: number): Promise<void> {
|
|
await window.textsecure.storage.protocol.removePreKey(id);
|
|
}
|
|
}
|
|
|
|
export class SignedPreKeys extends SignedPreKeyStore {
|
|
async saveSignedPreKey(
|
|
id: number,
|
|
record: SignedPreKeyRecord
|
|
): Promise<void> {
|
|
await window.textsecure.storage.protocol.storeSignedPreKey(
|
|
id,
|
|
freezeSignedPreKey(record),
|
|
true
|
|
);
|
|
}
|
|
|
|
async getSignedPreKey(id: number): Promise<SignedPreKeyRecord> {
|
|
const signedPreKey = await window.textsecure.storage.protocol.loadSignedPreKey(
|
|
id
|
|
);
|
|
|
|
if (!signedPreKey) {
|
|
throw new Error(`getSignedPreKey: SignedPreKey ${id} not found`);
|
|
}
|
|
|
|
return signedPreKey;
|
|
}
|
|
}
|