Update for @signalapp/libsignal-client rename

This commit is contained in:
Jordan Rose 2022-03-24 14:47:21 -07:00 committed by GitHub
parent d18ed40a23
commit 5a107e1bc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
28 changed files with 56 additions and 64 deletions

View file

@ -188,7 +188,7 @@ describe('Crypto', () => {
const result = deriveSecrets(input, salt, info);
assert.lengthOf(result, 3);
result.forEach(part => {
// This is a smoke test; HKDF is tested as part of @signalapp/signal-client.
// This is a smoke test; HKDF is tested as part of @signalapp/libsignal-client.
assert.instanceOf(part, Uint8Array);
assert.strictEqual(part.byteLength, 32);
});