summaryrefslogtreecommitdiffstats
path: root/core/sha1.js
diff options
context:
space:
mode:
Diffstat (limited to 'core/sha1.js')
-rw-r--r--core/sha1.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/sha1.js b/core/sha1.js
index 73d05b1..708e10b 100644
--- a/core/sha1.js
+++ b/core/sha1.js
@@ -138,8 +138,7 @@ sjcl.hash.sha1.prototype = {
_block:function (words) {
var t, tmp, a, b, c, d, e,
w = words.slice(0),
- h = this._h,
- k = this._key;
+ h = this._h;
a = h[0]; b = h[1]; c = h[2]; d = h[3]; e = h[4];