egirlskey/src/client/scripts/get-md5.ts

11 lines
258 B
TypeScript
Raw Normal View History

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