Skip to content

Commit

Permalink
Comment out test
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Oct 3, 2024
1 parent 04ae89f commit 5da947e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function executeKDFTests(limit = true) {
salt: bytes(0, 1024),
});
for (let c of cases) {
console.log('T', c);
// console.log('T', c);
if (c.dkLen === 0) continue;
const exp = Uint8Array.from(crypto.pbkdf2Sync(c.pwd, c.salt, c.c, c.dkLen, 'sha256'));
const opt = { c: c.c, dkLen: c.dkLen };
Expand Down

0 comments on commit 5da947e

Please sign in to comment.