mirror of
https://github.com/vector-im/element-call.git
synced 2026-02-08 04:19:11 +00:00
* Handle case of encryption key for an index to be undefined
As per https://github.com/matrix-org/matrix-js-sdk/pull/4423 the key can be undefined and so we should handle this rather than waiting for SubtleCrypto.importKey() to fail.
* Use release version of matrix-js-sdk
Diff is baa6d13506...v34.7.0
* Use RTCSession. reemitEncryptionKeys()
* Add some test coverage whilst we are here
* Add some test coverage whilst we are here
* Lint
64 lines
1.8 KiB
TypeScript
64 lines
1.8 KiB
TypeScript
/*
|
|
Copyright 2023, 2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
import { BaseKeyProvider, createKeyMaterialFromBuffer } from "livekit-client";
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
|
import {
|
|
MatrixRTCSession,
|
|
MatrixRTCSessionEvent,
|
|
} from "matrix-js-sdk/src/matrixrtc/MatrixRTCSession";
|
|
|
|
export class MatrixKeyProvider extends BaseKeyProvider {
|
|
private rtcSession?: MatrixRTCSession;
|
|
|
|
public constructor() {
|
|
super({ ratchetWindowSize: 0, keyringSize: 256 });
|
|
}
|
|
|
|
public setRTCSession(rtcSession: MatrixRTCSession): void {
|
|
if (this.rtcSession) {
|
|
this.rtcSession.off(
|
|
MatrixRTCSessionEvent.EncryptionKeyChanged,
|
|
this.onEncryptionKeyChanged,
|
|
);
|
|
}
|
|
|
|
this.rtcSession = rtcSession;
|
|
|
|
this.rtcSession.on(
|
|
MatrixRTCSessionEvent.EncryptionKeyChanged,
|
|
this.onEncryptionKeyChanged,
|
|
);
|
|
|
|
// The new session could be aware of keys of which the old session wasn't,
|
|
// so emit key changed events
|
|
this.rtcSession.reemitEncryptionKeys();
|
|
}
|
|
|
|
private onEncryptionKeyChanged = (
|
|
encryptionKey: Uint8Array,
|
|
encryptionKeyIndex: number,
|
|
participantId: string,
|
|
): void => {
|
|
createKeyMaterialFromBuffer(encryptionKey).then(
|
|
(keyMaterial) => {
|
|
this.onSetEncryptionKey(keyMaterial, participantId, encryptionKeyIndex);
|
|
|
|
logger.debug(
|
|
`Sent new key to livekit room=${this.rtcSession?.room.roomId} participantId=${participantId} encryptionKeyIndex=${encryptionKeyIndex}`,
|
|
);
|
|
},
|
|
(e) => {
|
|
logger.error(
|
|
`Failed to create key material from buffer for livekit room=${this.rtcSession?.room.roomId} participantId=${participantId} encryptionKeyIndex=${encryptionKeyIndex}`,
|
|
e,
|
|
);
|
|
},
|
|
);
|
|
};
|
|
}
|