@@ -287,7 +287,7 @@ describe('S/MIME encryption', function () {
287287 expect ( Buffer . compare ( decryptedBuf , rawCopy ) ) . to . equal ( 0 ) ;
288288 } ) ;
289289
290- // EC key tests — GCM (AuthEnvelopedData)
290+ // EC key tests - GCM (AuthEnvelopedData)
291291 for ( let curve of [ 'P-256' , 'P-384' , 'P-521' ] ) {
292292 it ( `GCM: should encrypt and decrypt with EC ${ curve } certificate` , async function ( ) {
293293 let raw = makeMessage ( { } ) ;
@@ -309,7 +309,7 @@ describe('S/MIME encryption', function () {
309309 } ) ;
310310 }
311311
312- // EC key tests — CBC (EnvelopedData via pkijs)
312+ // EC key tests - CBC (EnvelopedData via pkijs)
313313 for ( let curve of [ 'P-256' , 'P-384' , 'P-521' ] ) {
314314 it ( `CBC: should encrypt and decrypt with EC ${ curve } certificate` , async function ( ) {
315315 let raw = makeMessage ( { } ) ;
@@ -331,7 +331,7 @@ describe('S/MIME encryption', function () {
331331 } ) ;
332332 }
333333
334- // RSA size variants — GCM
334+ // RSA size variants - GCM
335335 for ( let bits of [ 2048 , 3072 , 4096 ] ) {
336336 it ( `GCM: should encrypt and decrypt with RSA ${ bits } certificate` , async function ( ) {
337337 let raw = makeMessage ( { } ) ;
@@ -351,7 +351,7 @@ describe('S/MIME encryption', function () {
351351 } ) ;
352352 }
353353
354- // RSA size variants — CBC
354+ // RSA size variants - CBC
355355 for ( let bits of [ 2048 , 3072 , 4096 ] ) {
356356 it ( `CBC: should encrypt and decrypt with RSA ${ bits } certificate` , async function ( ) {
357357 let raw = makeMessage ( { } ) ;
0 commit comments