diff options
Diffstat (limited to 'shared/extra-utils/crypto.ts')
-rw-r--r-- | shared/extra-utils/crypto.ts | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/shared/extra-utils/crypto.ts b/shared/extra-utils/crypto.ts new file mode 100644 index 000000000..1a583f1a0 --- /dev/null +++ b/shared/extra-utils/crypto.ts | |||
@@ -0,0 +1,20 @@ | |||
1 | import { BinaryToTextEncoding, createHash } from 'crypto' | ||
2 | |||
3 | function sha256 (str: string | Buffer, encoding: BinaryToTextEncoding = 'hex') { | ||
4 | return createHash('sha256').update(str).digest(encoding) | ||
5 | } | ||
6 | |||
7 | function sha1 (str: string | Buffer, encoding: BinaryToTextEncoding = 'hex') { | ||
8 | return createHash('sha1').update(str).digest(encoding) | ||
9 | } | ||
10 | |||
11 | // high excluded | ||
12 | function randomInt (low: number, high: number) { | ||
13 | return Math.floor(Math.random() * (high - low) + low) | ||
14 | } | ||
15 | |||
16 | export { | ||
17 | randomInt, | ||
18 | sha256, | ||
19 | sha1 | ||
20 | } | ||