summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/internal/crypto/scrypt.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/internal/crypto/scrypt.ts')
-rw-r--r--ext/node/polyfills/internal/crypto/scrypt.ts7
1 files changed, 1 insertions, 6 deletions
diff --git a/ext/node/polyfills/internal/crypto/scrypt.ts b/ext/node/polyfills/internal/crypto/scrypt.ts
index 7de5a3ab8..ce8649bbe 100644
--- a/ext/node/polyfills/internal/crypto/scrypt.ts
+++ b/ext/node/polyfills/internal/crypto/scrypt.ts
@@ -28,12 +28,7 @@ SOFTWARE.
import { Buffer } from "node:buffer";
import { HASH_DATA } from "ext:deno_node/internal/crypto/types.ts";
-
-import { core } from "ext:core/mod.js";
-const {
- op_node_scrypt_sync,
- op_node_scrypt_async,
-} = core.ensureFastOps();
+import { op_node_scrypt_async, op_node_scrypt_sync } from "ext:core/ops";
type Opts = Partial<{
N: number;