2018-11-12 04:09:02 +09:00
|
|
|
// スクリプトサイズがデカい
|
2019-01-30 11:51:29 +09:00
|
|
|
//import * as crypto from 'crypto';
|
2018-10-07 16:51:46 +09:00
|
|
|
|
|
|
|
export default (data: ArrayBuffer) => {
|
2018-11-12 04:09:02 +09:00
|
|
|
//const buf = new Buffer(data);
|
2018-12-19 21:20:25 +09:00
|
|
|
//const hash = crypto.createHash('md5');
|
2018-11-12 04:09:02 +09:00
|
|
|
//hash.update(buf);
|
2018-12-19 21:20:25 +09:00
|
|
|
//return hash.digest('hex');
|
2018-11-12 04:09:02 +09:00
|
|
|
return '';
|
|
|
|
};
|