D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
thread-self
/
root
/
home
/
etb1lp46s9ed
/
www
/
wabot.delyntro.com
/
node_modules
/
uuid
/
dist
/
esm
/
Filename :
md5.js
back
Copy
import { createHash } from 'crypto'; function md5(bytes) { if (Array.isArray(bytes)) { bytes = Buffer.from(bytes); } else if (typeof bytes === 'string') { bytes = Buffer.from(bytes, 'utf8'); } return createHash('md5').update(bytes).digest(); } export default md5;