File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ var assert = require('assert');
8
8
function usage ( ) {
9
9
console . log ( 'Usage: node test.js [args]' ) ;
10
10
console . log ( ' <version> - test only the specified version(s)' ) ;
11
- console . log ( ' Supported: [aes128gcm,aesgcm,aesgcm128 ]' ) ;
11
+ console . log ( ' Supported: [aes128gcm,aesgcm]' ) ;
12
12
console . log ( ' <test function> - test only the specified function(s)' ) ;
13
13
console . log ( ' "verbose" enable logging for tests (export ECE_KEYLOG=1 for more)' ) ;
14
14
console . log ( ' "text=..." sets the input string' ) ;
@@ -116,9 +116,6 @@ function generateInput(min) {
116
116
}
117
117
118
118
function rsoverhead ( version ) {
119
- if ( version === 'aesgcm128' ) {
120
- return 1 ;
121
- }
122
119
if ( version === 'aesgcm' ) {
123
120
return 2 ;
124
121
}
@@ -397,7 +394,7 @@ function useCustomCallback(version) {
397
394
}
398
395
399
396
validate ( ) ;
400
- filterTests ( [ 'aesgcm128' , ' aesgcm', 'aes128gcm' ] )
397
+ filterTests ( [ 'aesgcm' , 'aes128gcm' ] )
401
398
. forEach ( function ( version ) {
402
399
filterTests ( [ useExplicitKey ,
403
400
authenticationSecret ,
You can’t perform that action at this time.
0 commit comments