2
0
mirror of synced 2025-02-25 12:35:17 +00:00

17 lines
374 B
TypeScript
Raw Normal View History

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