mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-17 15:23:36 +01:00
49 lines
1.7 KiB
TypeScript
49 lines
1.7 KiB
TypeScript
// Copyright 2025 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { CallLinkRootKey } from '@signalapp/ringrtc';
|
|
import { Aci } from '@signalapp/libsignal-client';
|
|
import { getCheckedCallLinkAuthCredentialsForToday } from '../../services/groupCredentialFetcher.preload.js';
|
|
import { itemStorage } from '../../textsecure/Storage.preload.js';
|
|
import type { CallLinkAuthCredentialPresentation } from '../zkgroup.node.js';
|
|
import * as durations from '../durations/index.std.js';
|
|
import {
|
|
CallLinkAuthCredential,
|
|
CallLinkSecretParams,
|
|
GenericServerPublicParams,
|
|
} from '../zkgroup.node.js';
|
|
|
|
export async function getCallLinkAuthCredentialPresentation(
|
|
callLinkRootKey: CallLinkRootKey
|
|
): Promise<CallLinkAuthCredentialPresentation> {
|
|
const credentials = getCheckedCallLinkAuthCredentialsForToday(
|
|
'getCallLinkAuthCredentialPresentation'
|
|
);
|
|
const todaysCredentials = credentials.today.credential;
|
|
const credential = new CallLinkAuthCredential(
|
|
Buffer.from(todaysCredentials, 'base64')
|
|
);
|
|
|
|
const genericServerPublicParamsBase64 = window.getGenericServerPublicParams();
|
|
const genericServerPublicParams = new GenericServerPublicParams(
|
|
Buffer.from(genericServerPublicParamsBase64, 'base64')
|
|
);
|
|
|
|
const ourAci = itemStorage.user.getAci();
|
|
if (ourAci == null) {
|
|
throw new Error('Failed to get our ACI');
|
|
}
|
|
const userId = Aci.fromUuid(ourAci);
|
|
|
|
const callLinkSecretParams = CallLinkSecretParams.deriveFromRootKey(
|
|
callLinkRootKey.bytes
|
|
);
|
|
const presentation = credential.present(
|
|
userId,
|
|
credentials.today.redemptionTime / durations.SECOND,
|
|
genericServerPublicParams,
|
|
callLinkSecretParams
|
|
);
|
|
return presentation;
|
|
}
|