mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-16 19:43:29 +01:00
feat(voice)!: add new encryption methods, remove old methods (#10451)
BREAKING CHANGE: This library no longer supports using `tweetnacl` as an encryption library due to Discord deprecating the algorithms that `tweetnacl` helped us support (read more [here](https://discord.com/developers/docs/change-log#voice-encryption-modes)). Please migrate to one of: `sodium-native`, `sodium`, `@stablelib/xchacha20poly1305`, `@noble/ciphers` or `libsodium-wrappers` unless your system supports `aes-256-gcm` (verify by running `require('node:crypto').getCiphers().includes('aes-256-gcm')`). --------- Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com> Co-authored-by: Vlad Frangu <me@vladfrangu.dev>
This commit is contained in:
@@ -1,9 +1,12 @@
|
||||
import { test, expect, vitest } from 'vitest';
|
||||
import { methods } from '../src/util/Secretbox';
|
||||
import { methods, secretboxLoadPromise } from '../src/util/Secretbox';
|
||||
|
||||
vitest.mock('tweetnacl');
|
||||
vitest.mock('@noble/ciphers/chacha');
|
||||
|
||||
test('Does not throw error with a package installed', () => {
|
||||
// @ts-expect-error We are testing
|
||||
expect(() => methods.open()).toThrow(TypeError);
|
||||
// TODO: what is this even testing exactly?
|
||||
test.skip('Does not throw error with a package installed', async () => {
|
||||
// The async loop in Secretbox will not have finished importing unless we wait
|
||||
await secretboxLoadPromise;
|
||||
|
||||
expect(() => methods.crypto_aead_xchacha20poly1305_ietf_decrypt()).not.toThrowError();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user