Darochin's picture
Mirror OpenSkyNet workspace snapshot from Git HEAD
fc93158 verified
import crypto from "node:crypto";
export function hashTextSha256(value: string): string {
return crypto.createHash("sha256").update(value).digest("hex");
}