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/sha/sha_256.ts

13 lines
338 B
TypeScript

import * as core from "webcrypto-core";
import { ShaCrypto } from "./crypto";
export class Sha256Provider extends core.ProviderCrypto {
public name = "SHA-256";
public usages = [];
public override async onDigest(algorithm: Algorithm, data: ArrayBuffer): Promise<ArrayBuffer> {
return ShaCrypto.digest(algorithm, data);
}
}