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/hkdf/key.ts

9 lines
169 B
TypeScript
Raw Normal View History

2019-03-02 20:06:33 +00:00
import { CryptoKey } from "../../keys";
export class HkdfCryptoKey extends CryptoKey {
2022-03-02 18:35:31 +00:00
public override data!: Buffer;
2019-03-02 20:06:33 +00:00
2022-03-02 18:35:31 +00:00
public override algorithm!: KeyAlgorithm;
2019-03-02 20:06:33 +00:00
}