summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts/get-md5.ts
blob: b78a5981181bbaacdd6fcffab2ee040dd0ba2d0e (plain)
1
2
3
4
5
6
7
8
9
10
// スクリプトサイズがデカい
//const crypto = require('crypto');

export default (data: ArrayBuffer) => {
	//const buf = new Buffer(data);
	//const hash = crypto.createHash('md5');
	//hash.update(buf);
	//return hash.digest('hex');
	return '';
};