mirror of
https://github.com/TheFunny/ArisuAutoSweeper
synced 2025-12-26 16:05:40 +00:00
6 lines
164 B
TypeScript
6 lines
164 B
TypeScript
import {type BinaryLike, createHash} from 'node:crypto';
|
|
|
|
export function sha256sum(data: BinaryLike) {
|
|
return createHash('sha256').update(data).digest('hex');
|
|
}
|