Node.js
Overview
Crypto
const crypto = require('crypto');
const hash = crypto
.createHash('sha256')
.update(content)
.digest('hex');
const crypto = require('crypto');
const hash = crypto
.createHash('sha256')
.update(content)
.digest('hex');