@@ -39,15 +39,15 @@ a8 = a8.read();
39
39
40
40
if ( ! common . hasFipsCrypto ) {
41
41
var a0 = crypto . createHash ( 'md5' ) . update ( 'Test123' ) . digest ( 'latin1' ) ;
42
- assert . equal (
42
+ assert . strictEqual (
43
43
a0 ,
44
44
'h\u00ea\u00cb\u0097\u00d8o\fF!\u00fa+\u000e\u0017\u00ca\u00bd\u008c' ,
45
45
'Test MD5 as latin1'
46
46
) ;
47
47
}
48
- assert . equal ( a1 , '8308651804facb7b9af8ffc53a33a22d6a1c8ac2' , 'Test SHA1' ) ;
49
- assert . equal ( a2 , '2bX1jws4GYKTlxhloUB09Z66PoJZW+y+hq5R8dnx9l4=' ,
50
- 'Test SHA256 as base64' ) ;
48
+ assert . strictEqual ( a1 , '8308651804facb7b9af8ffc53a33a22d6a1c8ac2' , 'Test SHA1' ) ;
49
+ assert . strictEqual ( a2 , '2bX1jws4GYKTlxhloUB09Z66PoJZW+y+hq5R8dnx9l4=' ,
50
+ 'Test SHA256 as base64' ) ;
51
51
assert . deepStrictEqual (
52
52
a3 ,
53
53
Buffer . from (
@@ -73,7 +73,7 @@ assert.notEqual(a8, undefined, 'empty string should generate data');
73
73
// Test multiple updates to same hash
74
74
var h1 = crypto . createHash ( 'sha1' ) . update ( 'Test123' ) . digest ( 'hex' ) ;
75
75
var h2 = crypto . createHash ( 'sha1' ) . update ( 'Test' ) . update ( '123' ) . digest ( 'hex' ) ;
76
- assert . equal ( h1 , h2 , 'multipled updates' ) ;
76
+ assert . strictEqual ( h1 , h2 , 'multipled updates' ) ;
77
77
78
78
// Test hashing for binary files
79
79
var fn = path . join ( common . fixturesDir , 'sample.png' ) ;
@@ -83,19 +83,19 @@ fileStream.on('data', function(data) {
83
83
sha1Hash . update ( data ) ;
84
84
} ) ;
85
85
fileStream . on ( 'close' , function ( ) {
86
- assert . equal ( sha1Hash . digest ( 'hex' ) ,
87
- '22723e553129a336ad96e10f6aecdf0f45e4149e' ,
88
- 'Test SHA1 of sample.png' ) ;
86
+ assert . strictEqual ( sha1Hash . digest ( 'hex' ) ,
87
+ '22723e553129a336ad96e10f6aecdf0f45e4149e' ,
88
+ 'Test SHA1 of sample.png' ) ;
89
89
} ) ;
90
90
91
91
// Issue #2227: unknown digest method should throw an error.
92
92
assert . throws ( function ( ) {
93
93
crypto . createHash ( 'xyzzy' ) ;
94
- } ) ;
94
+ } , / D i g e s t m e t h o d n o t s u p p o r t e d / ) ;
95
95
96
96
// Default UTF-8 encoding
97
97
var hutf8 = crypto . createHash ( 'sha512' ) . update ( 'УТФ-8 text' ) . digest ( 'hex' ) ;
98
- assert . equal (
98
+ assert . strictEqual (
99
99
hutf8 ,
100
100
'4b21bbd1a68e690a730ddcb5a8bc94ead9879ffe82580767ad7ec6fa8ba2dea6' +
101
101
'43a821af66afa9a45b6a78c712fecf0e56dc7f43aef4bcfc8eb5b4d8dca6ea5b' ) ;
0 commit comments