this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 5 lines 182 B view raw
1import { createHash } from "node:crypto"; 2 3export function validateMd5(data: Buffer, expectedHash: string) { 4 return createHash("md5").update(data).digest("hex") === expectedHash; 5}