We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbb75be commit 6d4f883Copy full SHA for 6d4f883
1 file changed
example/src/tests/cipher/cipherinfo_tests.ts
@@ -18,7 +18,7 @@ test(SUITE, 'getCipherInfo: returns info for aes-256-cbc', () => {
18
test(SUITE, 'getCipherInfo: returns info for aes-128-gcm', () => {
19
const info = getCipherInfo('aes-128-gcm');
20
assert.isOk(info);
21
- assert.strictEqual(info!.name, 'aes-128-gcm');
+ assert.strictEqual(info!.name, 'id-aes128-gcm');
22
assert.strictEqual(info!.keyLength, 16);
23
assert.strictEqual(info!.ivLength, 12);
24
assert.strictEqual(info!.mode, 'gcm');
0 commit comments