This repository has been archived on 2023-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
webcrypto/src/mechs/shake/crypto.ts

12 lines
279 B
TypeScript

import crypto from "crypto";
export class ShakeCrypto {
public static digest(algorithm: Algorithm, data: ArrayBuffer) {
const hash = crypto.createHash(algorithm.name.toLowerCase())
.update(Buffer.from(data)).digest();
return new Uint8Array(hash).buffer;
}
}