From 501a4210c38cdcc46893a295783ced3d2b8aaedc Mon Sep 17 00:00:00 2001 From: Benny Neugebauer Date: Fri, 16 Oct 2015 17:07:34 +0200 Subject: [PATCH] Spelling mistake: ikm -> imk --- lib/hkdf.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/hkdf.js b/lib/hkdf.js index 6314d0c..7a87417 100644 --- a/lib/hkdf.js +++ b/lib/hkdf.js @@ -14,7 +14,7 @@ function zeros(length) { return buf.toString(); } -// imk is initial keying material +// ikm is initial keying material function HKDF(hashAlg, salt, ikm) { this.hashAlg = hashAlg; @@ -49,4 +49,4 @@ HKDF.prototype = { } }; -module.exports = HKDF; \ No newline at end of file +module.exports = HKDF;