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/constants.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/constants.ts')
-rw-r--r-- | std/node/_crypto/constants.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/std/node/_crypto/constants.ts b/std/node/_crypto/constants.ts new file mode 100644 index 000000000..cfe3f4626 --- /dev/null +++ b/std/node/_crypto/constants.ts @@ -0,0 +1 @@ +export const MAX_ALLOC = Math.pow(2, 30) - 1; |