summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts/get-md5.ts
blob: 51a45b30d5db285b82b7884535b7a8f94a539b43 (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 '';
};