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