Simplify source file dependency graph

This commit is contained in:
Fedor Indutny
2025-10-02 13:43:11 -07:00
committed by GitHub
parent fac6b39784
commit f6df564aa9
58 changed files with 507 additions and 542 deletions

View File

@@ -6,6 +6,7 @@ import lodash from 'lodash';
import * as sinon from 'sinon';
import { getRandomBytes } from '../../Crypto.js';
import { generateKeyPair } from '../../Curve.js';
import AccountManager from '../../textsecure/AccountManager.js';
import type {
KyberPreKeyType,
@@ -29,7 +30,7 @@ describe('AccountManager', () => {
const ourAci = generateAci();
const ourPni = generatePni();
const identityKey = window.Signal.Curve.generateKeyPair();
const identityKey = generateKeyPair();
const pubKey = getRandomBytes(33);
const privKey = getRandomBytes(32);