randydev commited on
Commit
24dc15b
·
verified ·
1 Parent(s): dfd43aa

Create util.ts

Browse files
Files changed (1) hide show
  1. lib/util.ts +10 -0
lib/util.ts ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import crypto from 'crypto'
2
+
3
+ const hashed = "b7944d7a59c9cb654228624880e7de59a53842c2d912b449fdf11febcf81cb21"
4
+
5
+ export function generateHash (url) {
6
+ const data = url + Date.now() + hashed
7
+ const hash = crypto.createHash('sha256')
8
+ hash.update(data)
9
+ return hash.digest('hex')
10
+ }