Removed sha256

This commit is contained in:
nicolas 2021-06-10 01:14:38 +02:00
parent 6c92e2fe1b
commit abae62f30e

View file

@ -1,10 +0,0 @@
const crypto = require('crypto');
function sha256(input: string): string {
return crypto
.createHash('sha256')
.update(input)
.digest("hex");
}
export default sha256;