1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2025-12-26 16:05:40 +00:00
ArisuAutoSweeper/webapp/packages/preload/src/nodeCrypto.ts
2023-11-01 15:33:35 +08:00

6 lines
164 B
TypeScript

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