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 0b14d4c commit ed0bea8Copy full SHA for ed0bea8
lib/pbkdf2.js
@@ -48,6 +48,7 @@ function pbkdf2(passwd, S, c, dkLen) {
48
arraycopy(U, 0, T, 0, hLen);
49
50
for (var j = 1; j < c; j++) {
51
+ sha256.init(passwd);
52
sha256.update(U);
53
U = sha256.finalize();
54
0 commit comments