File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,8 @@ Sha.prototype._update = function (M) {
46
46
var d = this . _d
47
47
var e = this . _e
48
48
49
- var j = 0 , k
49
+ var j = 0
50
+ var k
50
51
51
52
/*
52
53
* SHA-1 has a bitwise rotate left operation. But, SHA is not
Original file line number Diff line number Diff line change @@ -47,7 +47,8 @@ Sha1.prototype._update = function (M) {
47
47
var d = this . _d
48
48
var e = this . _e
49
49
50
- var j = 0 , k
50
+ var j = 0
51
+ var k
51
52
52
53
function calcW ( ) { return rol ( W [ j - 3 ] ^ W [ j - 8 ] ^ W [ j - 14 ] ^ W [ j - 16 ] , 1 ) }
53
54
function loop ( w , f ) {
Original file line number Diff line number Diff line change @@ -110,7 +110,8 @@ Sha512.prototype._update = function (M) {
110
110
var gl = this . _gl | 0
111
111
var hl = this . _hl | 0
112
112
113
- var i = 0 , j = 0
113
+ var i = 0
114
+ var j = 0
114
115
var Wi , Wil
115
116
function calcW ( ) {
116
117
var x = W [ j - 15 * 2 ]
You can’t perform that action at this time.
0 commit comments