summaryrefslogtreecommitdiff
path: root/std/node/crypto.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/node/crypto.ts')
-rw-r--r--std/node/crypto.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/std/node/crypto.ts b/std/node/crypto.ts
new file mode 100644
index 000000000..49bf897d7
--- /dev/null
+++ b/std/node/crypto.ts
@@ -0,0 +1,4 @@
+import randomBytes from "./_crypto/randomBytes.ts";
+import { pbkdf2, pbkdf2Sync } from "./_crypto/pbkdf2.ts";
+
+export { pbkdf2, pbkdf2Sync, randomBytes };