Spaces:
Sleeping
Sleeping
| import { createHash } from "node:crypto"; | |
| export function sha256(input: string | Buffer): string { | |
| return createHash("sha256").update(input).digest("hex"); | |
| } |
| import { createHash } from "node:crypto"; | |
| export function sha256(input: string | Buffer): string { | |
| return createHash("sha256").update(input).digest("hex"); | |
| } |