Skip to content

Commit 35a15f3

Browse files
committed
feat: hmac
1 parent 782d83d commit 35a15f3

File tree

15 files changed

+906
-4
lines changed

15 files changed

+906
-4
lines changed

docs/implementation-coverage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ This document attempts to describe the implementation status of Crypto APIs/Inte
4747
*`hash.copy([options])`
4848
*`hash.digest([encoding])`
4949
*`hash.update(data[, inputEncoding])`
50-
* Class: `Hmac`
51-
* `hmac.digest([encoding])`
52-
* `hmac.update(data[, inputEncoding])`
50+
* Class: `Hmac`
51+
* `hmac.digest([encoding])`
52+
* `hmac.update(data[, inputEncoding])`
5353
* ❌ Class: `KeyObject`
5454
*`Static method: KeyObject.from(key)`
5555
*`keyObject.asymmetricKeyDetails`
@@ -102,7 +102,7 @@ This document attempts to describe the implementation status of Crypto APIs/Inte
102102
*`crypto.createDiffieHellmanGroup(name)`
103103
*`crypto.createECDH(curveName)`
104104
*`crypto.createHash(algorithm[, options])`
105-
* `crypto.createHmac(algorithm, key[, options])`
105+
* `crypto.createHmac(algorithm, key[, options])`
106106
*`crypto.createPrivateKey(key)`
107107
*`crypto.createPublicKey(key)`
108108
*`crypto.createSecretKey(key[, encoding])`

example/src/hooks/useTestsList.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { useState, useCallback } from 'react';
22
import type { TestSuites } from '../types/tests';
33
import { TestsContext } from '../tests/util';
44

5+
import '../tests/hmac/hmac_tests';
56
import '../tests/hash/hash_tests';
67
import '../tests/ed25519/ed25519_tests';
78
import '../tests/pbkdf2/pbkdf2_tests';

0 commit comments

Comments
 (0)