1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-19 04:09:29 +08:00
Files
Alas/webapp/packages/preload/src/nodeCrypto.ts

6 lines
164 B
TypeScript

import {type BinaryLike, createHash} from 'node:crypto';
export function sha256sum(data: BinaryLike) {
return createHash('sha256').update(data).digest('hex');
}