ethers.js/src.ts/utils/sha2.ts

14 lines
338 B
TypeScript
Raw Normal View History

2018-06-13 22:39:39 +03:00
'use strict';
import hash from 'hash.js';
2018-06-13 22:39:39 +03:00
2018-06-17 23:47:28 +03:00
import { arrayify, Arrayish } from './bytes';
2018-06-13 22:39:39 +03:00
2018-06-15 11:18:17 +03:00
export function sha256(data: Arrayish): string {
return '0x' + (hash.sha256().update(arrayify(data)).digest('hex'));
2018-06-13 22:39:39 +03:00
}
2018-06-15 11:18:17 +03:00
export function sha512(data: Arrayish): string {
return '0x' + (hash.sha512().update(arrayify(data)).digest('hex'));
2018-06-13 22:39:39 +03:00
}