summaryrefslogtreecommitdiff
path: root/src/client/scripts/get-md5.ts
blob: b002d762b12f8333971e89afa400aff844bbe6d4 (plain)
1
2
3
4
5
6
7
8
9
10
// スクリプトサイズがデカい
//import * as crypto from 'crypto';

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