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