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

15 lines
349 B
TypeScript
Raw Normal View History

2019-01-25 10:43:13 +00:00
import * as core from "webcrypto-core";
import { ShaCrypto } from "./crypto";
export class Sha256Provider extends core.ProviderCrypto {
public name = "SHA-256";
public usages = [];
2023-04-04 10:20:37 +00:00
public override async onDigest(
algorithm: Algorithm,
data: ArrayBuffer
): Promise<ArrayBuffer> {
2019-01-25 10:43:13 +00:00
return ShaCrypto.digest(algorithm, data);
}
}