Select the types of activity you want to include in your feed.
1import { createHash } from "node:crypto"; 2 3export function validateMd5(data: Buffer, expectedHash: string) { 4 return createHash("md5").update(data).digest("hex") === expectedHash; 5}