Skip to content

Commit 329ac60

Browse files
tniessentargos
authored andcommitted
crypto: remove unused scrypt validation parameter
PR-URL: #22902 Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent bb3292f commit 329ac60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/crypto/scrypt.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function handleError(keybuf, password, salt, N, r, p, maxmem, wrap) {
7070
throw ex; // Scrypt operation failed, exception object contains details.
7171
}
7272

73-
function check(password, salt, keylen, options, callback) {
73+
function check(password, salt, keylen, options) {
7474
if (_scrypt === undefined)
7575
throw new ERR_CRYPTO_SCRYPT_NOT_SUPPORTED();
7676

0 commit comments

Comments
 (0)