NodeJS Crypto (API)
JS
S
JavaScriptGive files a hash in the name
1import crypto from 'crypto';
2
3const fileHash = crypto.createHash('md5').update(fileContents).digest('hex');
4Created on 1/12/2018
Give files a hash in the name
1import crypto from 'crypto';
2
3const fileHash = crypto.createHash('md5').update(fileContents).digest('hex');
4Created on 1/12/2018