UNPKG

awscdk-construct-scte-scheduler

Version:

AWS CDK Construct for scheduling SCTE-35 events using the MediaLive schedule API

9 lines (8 loc) 281 B
import { blobReader } from "../chunked-blob-reader/chunked-blob-reader"; export const blobHasher = async function blobHasher(hashCtor, blob) { const hash = new hashCtor(); await blobReader(blob, (chunk) => { hash.update(chunk); }); return hash.digest(); };