MD5 контрольная сумма JavaScript

const crypto = require('crypto')
crypto.createHash('md5').update('hello world').digest('hex')
Poised Peccary