From c37e0fcc938b08d5e638b51b0a48ff1006b536a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Mon, 22 Jul 2019 23:33:00 +0200 Subject: [PATCH] fixup! crypto: increase maxmem range from 32 to 53 bits --- lib/internal/crypto/scrypt.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/internal/crypto/scrypt.js b/lib/internal/crypto/scrypt.js index 7a2a6a7054076a..90bc7ba3f53220 100644 --- a/lib/internal/crypto/scrypt.js +++ b/lib/internal/crypto/scrypt.js @@ -1,5 +1,6 @@ 'use strict'; +const { Number } = primordials; const { AsyncWrap, Providers } = internalBinding('async_wrap'); const { Buffer } = require('buffer'); const { scrypt: _scrypt } = internalBinding('crypto');