Files
2026-06-10 12:38:42 -03:00

7 lines
228 B
JavaScript

import { toUint8Array } from "@smithy/core/serde";
export const stringHasher = (checksumAlgorithmFn, body) => {
const hash = new checksumAlgorithmFn();
hash.update(toUint8Array(body || ""));
return hash.digest();
};