Skip to content

Commit

Permalink
hmac: export HMAC type, fix gh-52
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Jun 2, 2023
1 parent faa3616 commit 4a24f2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hmac.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import assert from './_assert.js';
import { Hash, CHash, Input, toBytes } from './utils.js';
// HMAC (RFC 2104)
class HMAC<T extends Hash<T>> extends Hash<HMAC<T>> {
export class HMAC<T extends Hash<T>> extends Hash<HMAC<T>> {
oHash: T;
iHash: T;
blockLen: number;
Expand Down

0 comments on commit 4a24f2e

Please sign in to comment.