diff options
author | Steve Thomas <Sc00bz@users.noreply.github.com> | 2015-11-01 14:36:28 -0600 |
---|---|---|
committer | Steve Thomas <Sc00bz@users.noreply.github.com> | 2015-11-01 14:36:28 -0600 |
commit | db7e40d449ab4ae65bacf267b38d1bf836b4fe54 (patch) | |
tree | f6f815673f56490c8ae3bfdc8ed9a5f4d9996f76 /core/sha1.js | |
parent | 025908ef2b091faab75f60188654f789b691ff0d (diff) | |
parent | f9a2494fae0dcddef493de453aa6ab69caa987cf (diff) | |
download | sjcl-db7e40d449ab4ae65bacf267b38d1bf836b4fe54.zip sjcl-db7e40d449ab4ae65bacf267b38d1bf836b4fe54.tar.gz sjcl-db7e40d449ab4ae65bacf267b38d1bf836b4fe54.tar.bz2 |
Merge pull request #1 from bitwiseshiftleft/master
Update
Diffstat (limited to 'core/sha1.js')
-rw-r--r-- | core/sha1.js | 3 |
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]; |