We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 837c98a commit 22729beCopy full SHA for 22729be
create-hmac.js
@@ -14,7 +14,6 @@ function Hmac (alg, key) {
14
this._opad = opad
15
this._alg = alg
16
17
- console.log(alg)
18
var blocksize = (alg === 'sha512' || alg === 'sha384') ? 128 : 64
19
20
key = this._key = !Buffer.isBuffer(key) ? new Buffer(key) : key
0 commit comments