[Pkg-javascript-commits] [node-browserify-aes] 37/92: remove unnessiary &
Bastien Roucariès
rouca at moszumanska.debian.org
Sun Jun 4 09:35:18 UTC 2017
This is an automated email from the git hooks/post-receive script.
rouca pushed a commit to branch master
in repository node-browserify-aes.
commit 59507f893c763899c248a1fb82c2fb32b99874cd
Author: Calvin Metcalf <cmetcalf at appgeo.com>
Date: Mon Dec 1 09:02:32 2014 -0500
remove unnessiary &
---
ghash.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ghash.js b/ghash.js
index f2fdade..5499d33 100644
--- a/ghash.js
+++ b/ghash.js
@@ -12,7 +12,7 @@ function GHASH(key){
GHASH.prototype.ghash = function (block) {
var i = -1;
while (++i < block.length) {
- this.state[i] ^= 0xff & block[i];
+ this.state[i] ^= block[i];
}
this._multiply();
};
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-browserify-aes.git
More information about the Pkg-javascript-commits
mailing list