Sharkey/src/client/app/common/scripts/get-md5.ts

11 lines
258 B
TypeScript
Raw Normal View History

// スクリプトサイズがデカい
//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 '';
};