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
1 change: 1 addition & 0 deletions .rules
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Every time you choose to apply a rule(s), explicitly state the rule(s) in the ou
- It uses Nitro Modules to bridge JS & C++.
- Use the documentation of Nitro Modules if you have access locally to its `llms.txt` file.
- Part of the API strives to be a polyfill of the Node.js `{crypto}` module.
- When in doubt, favor in order: WebCrypto API, NodeJS implementation, 0.x implementation
- The goal is to migrate 0.x of this library that uses OpenSSL 1.1.1 to now use OpenSSL 3.3 and modern C++ with Nitro Modules.

## Tech Stack
Expand Down
6 changes: 3 additions & 3 deletions docs/implementation-coverage.md
Original file line number Diff line number Diff line change
Expand Up @@ -352,9 +352,9 @@ This document attempts to describe the implementation status of Crypto APIs/Inte
| `ML-KEM-512` | ❌ |
| `ML-KEM-768` | ❌ |
| `ML-KEM-1024` | ❌ |
| `RSA-OAEP` | |
| `RSA-PSS` | |
| `RSASSA-PKCS1-v1_5` | |
| `RSA-OAEP` | |
| `RSA-PSS` | |
| `RSASSA-PKCS1-v1_5` | |
| `X25519` | ❌ |
| `X448` | ❌ |

Expand Down
4 changes: 2 additions & 2 deletions example/src/hooks/useTestsList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { TestsContext } from '../tests/util';
import '../tests/cipher/cipher_tests';
import '../tests/cipher/chacha_tests';
import '../tests/cipher/xsalsa20_tests';
import '../tests/ed25519/ed25519_tests';
import '../tests/ed25519/x25519_tests';
import '../tests/cfrg/ed25519_tests';
import '../tests/cfrg/x25519_tests';
import '../tests/hash/hash_tests';
import '../tests/hmac/hmac_tests';
import '../tests/pbkdf2/pbkdf2_tests';
Expand Down
Loading
Loading