We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3e3c21 commit 19d48f6Copy full SHA for 19d48f6
packages/voice/src/util/generateDependencyReport.ts
@@ -1,5 +1,6 @@
1
/* eslint-disable @typescript-eslint/no-var-requires */
2
/* eslint-disable @typescript-eslint/no-require-imports */
3
+import { getCiphers } from 'node:crypto';
4
import { resolve, dirname } from 'node:path';
5
import prism from 'prism-media';
6
@@ -65,6 +66,7 @@ export function generateDependencyReport() {
65
66
67
// encryption
68
report.push('Encryption Libraries');
69
+ report.push(`- native crypto support for aes-256-gcm: ${getCiphers().includes('aes-256-gcm') ? 'yes' : 'no'}`);
70
addVersion('sodium-native');
71
addVersion('sodium');
72
addVersion('libsodium-wrappers');
0 commit comments