File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -312,7 +312,7 @@ var ciphers = crypto.getCiphers();
312
312
for ( var i in TEST_CASES ) {
313
313
var test = TEST_CASES [ i ] ;
314
314
315
- if ( ciphers . indexOf ( test . algo ) == - 1 ) {
315
+ if ( ciphers . indexOf ( test . algo ) === - 1 ) {
316
316
common . skip ( 'unsupported ' + test . algo + ' test' ) ;
317
317
continue ;
318
318
}
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ var wikipedia = [
62
62
for ( let i = 0 , l = wikipedia . length ; i < l ; i ++ ) {
63
63
for ( const hash in wikipedia [ i ] [ 'hmac' ] ) {
64
64
// FIPS does not support MD5.
65
- if ( common . hasFipsCrypto && hash == 'md5' )
65
+ if ( common . hasFipsCrypto && hash === 'md5' )
66
66
continue ;
67
67
const result = crypto . createHmac ( hash , wikipedia [ i ] [ 'key' ] )
68
68
. update ( wikipedia [ i ] [ 'data' ] )
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ for (const name in hashes) {
42
42
43
43
for ( const name in hashes ) {
44
44
// modp1 is 768 bits, FIPS requires >= 1024
45
- if ( name == 'modp1' && common . hasFipsCrypto )
45
+ if ( name === 'modp1' && common . hasFipsCrypto )
46
46
continue ;
47
47
var group1 = crypto . getDiffieHellman ( name ) ;
48
48
var group2 = crypto . getDiffieHellman ( name ) ;
You can’t perform that action at this time.
0 commit comments