declaring i in Keccak

This commit is contained in:
adon
2015-09-28 16:13:39 -07:00
parent 09db28deed
commit fbedaa1f4c
+1 -1
View File
@@ -104,7 +104,7 @@
this.outputBlocks = outputBits >> 5; this.outputBlocks = outputBits >> 5;
this.extraBytes = (outputBits & 31) >> 3; this.extraBytes = (outputBits & 31) >> 3;
for(i = 0;i < 50;++i) { for(var i = 0;i < 50;++i) {
this.s[i] = 0; this.s[i] = 0;
} }
}; };