test: remove references to create(De|C)ipher · nodejs/node@4ae6a1a

@@ -245,7 +245,7 @@ for (const test of TEST_CASES) {

245245

assert.strictEqual(text.toString('utf8'), 'node');

246246

}

247247248-

// Test that create(De|C)ipher(iv)? throws if the mode is CCM and an invalid

248+

// Test that create(De|C)ipheriv throws if the mode is CCM and an invalid

249249

// authentication tag length has been specified.

250250

{

251251

for (const authTagLength of [-1, true, false, NaN, 5.5]) {

@@ -303,7 +303,7 @@ for (const test of TEST_CASES) {

303303

}

304304

}

305305306-

// Test that create(De|C)ipher(iv)? throws if the mode is CCM or OCB and no

306+

// Test that create(De|C)ipheriv throws if the mode is CCM or OCB and no

307307

// authentication tag has been specified.

308308

{

309309

for (const mode of ['ccm', 'ocb']) {

@@ -315,7 +315,7 @@ for (const test of TEST_CASES) {

315315

message: `authTagLength required for aes-256-${mode}`

316316

});

317317318-

// CCM decryption and create(De|C)ipher are unsupported in FIPS mode.

318+

// CCM decryption is unsupported in FIPS mode.

319319

if (!isFipsEnabled) {

320320

assert.throws(() => {

321321

crypto.createDecipheriv(`aes-256-${mode}`,