Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/implementation-coverage.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ This document attempts to describe the implementation status of Crypto APIs/Inte
* ✅ `hash.copy([options])`
* ✅ `hash.digest([encoding])`
* ✅ `hash.update(data[, inputEncoding])`
* Class: `Hmac`
* `hmac.digest([encoding])`
* `hmac.update(data[, inputEncoding])`
* Class: `Hmac`
* `hmac.digest([encoding])`
* `hmac.update(data[, inputEncoding])`
* ❌ Class: `KeyObject`
* ❌ `Static method: KeyObject.from(key)`
* ❌ `keyObject.asymmetricKeyDetails`
Expand Down Expand Up @@ -102,7 +102,7 @@ This document attempts to describe the implementation status of Crypto APIs/Inte
* ❌ `crypto.createDiffieHellmanGroup(name)`
* ❌ `crypto.createECDH(curveName)`
* ✅ `crypto.createHash(algorithm[, options])`
* `crypto.createHmac(algorithm, key[, options])`
* `crypto.createHmac(algorithm, key[, options])`
* ❌ `crypto.createPrivateKey(key)`
* ❌ `crypto.createPublicKey(key)`
* ❌ `crypto.createSecretKey(key[, encoding])`
Expand Down
1 change: 1 addition & 0 deletions example/src/hooks/useTestsList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { useState, useCallback } from 'react';
import type { TestSuites } from '../types/tests';
import { TestsContext } from '../tests/util';

import '../tests/hmac/hmac_tests';
import '../tests/hash/hash_tests';
import '../tests/ed25519/ed25519_tests';
import '../tests/pbkdf2/pbkdf2_tests';
Expand Down
Loading
Loading