chat-uigl / src /lib /utils /sha256.ts
DakMak's picture
Duplicate from coyotte508/chat-ui
ece0c29
raw
history blame contribute delete
377 Bytes
import * as crypto from "crypto";
export async function sha256(input: string): Promise<string> {
const utf8 = new TextEncoder().encode(input);
const hashBuffer = await crypto.subtle.digest("SHA-256", utf8);
const hashArray = Array.from(new Uint8Array(hashBuffer));
const hashHex = hashArray.map((bytes) => bytes.toString(16).padStart(2, "0")).join("");
return hashHex;
}