summaryrefslogtreecommitdiff
path: root/lib/internal/crypto
diff options
context:
space:
mode:
Diffstat (limited to 'lib/internal/crypto')
-rw-r--r--lib/internal/crypto/hash.js1
-rw-r--r--lib/internal/crypto/keys.js1
-rw-r--r--lib/internal/crypto/util.js4
3 files changed, 6 insertions, 0 deletions
diff --git a/lib/internal/crypto/hash.js b/lib/internal/crypto/hash.js
index 56784275f9..dca0ba767f 100644
--- a/lib/internal/crypto/hash.js
+++ b/lib/internal/crypto/hash.js
@@ -2,6 +2,7 @@
const {
ObjectSetPrototypeOf,
+ Symbol,
} = primordials;
const {
diff --git a/lib/internal/crypto/keys.js b/lib/internal/crypto/keys.js
index 25ef888495..087cef014f 100644
--- a/lib/internal/crypto/keys.js
+++ b/lib/internal/crypto/keys.js
@@ -2,6 +2,7 @@
const {
ObjectDefineProperty,
+ Symbol,
} = primordials;
const {
diff --git a/lib/internal/crypto/util.js b/lib/internal/crypto/util.js
index 8bf66e9cdf..286efc39a6 100644
--- a/lib/internal/crypto/util.js
+++ b/lib/internal/crypto/util.js
@@ -1,6 +1,10 @@
'use strict';
const {
+ Symbol,
+} = primordials;
+
+const {
getCiphers: _getCiphers,
getCurves: _getCurves,
getHashes: _getHashes,