diff options
author | Steven Guerrero <stephenguerrero43@gmail.com> | 2020-10-29 21:53:27 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-29 22:53:27 -0400 |
commit | 5aeac009712e4b28cee4437d4d9a6f3832296672 (patch) | |
tree | 00742533110b0cd5c1ca56b85a397bd640b28a88 /std/node/crypto.ts | |
parent | 6be6c517d0691bf1d14eef67668e575c84cdfdf4 (diff) |
feat(std/node/crypto): randomBytes and pbkdf2 (#8191)
* crypto
* Other thing
* Test for pdkdf2
* Add randomBytes
* Refactor pbkdf2
* Lint and format
Diffstat (limited to 'std/node/crypto.ts')
-rw-r--r-- | std/node/crypto.ts | 4 |
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 }; |