We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faa3616 commit 4a24f2eCopy full SHA for 4a24f2e
src/hmac.ts
@@ -1,7 +1,7 @@
1
import assert from './_assert.js';
2
import { Hash, CHash, Input, toBytes } from './utils.js';
3
// HMAC (RFC 2104)
4
-class HMAC<T extends Hash<T>> extends Hash<HMAC<T>> {
+export class HMAC<T extends Hash<T>> extends Hash<HMAC<T>> {
5
oHash: T;
6
iHash: T;
7
blockLen: number;
0 commit comments