|
6 | 6 |  |
7 | 7 |  |
8 | 8 |
|
9 | | -A secure JWT implementation with **AES-256-GCM** & **ChaCha20-Poly1305** algorithms for Node.js applications. |
| 9 | +A secure JWT library implementation with multiple encryption algorithms, zero dependencies, and built-in security for Node.js applications. Designed for high performance and reliability with TypeScript support. |
10 | 10 |
|
11 | 11 | ## ✨ Features |
12 | 12 |
|
@@ -105,15 +105,15 @@ const jwt = new SecureJWT({ |
105 | 105 |
|
106 | 106 | | Value | Description | |
107 | 107 | |-------|-------------| |
108 | | -| `aes-256-gcm` | Hardware accelerated, industry standard, perfect for general purpose and enterprise applications | |
109 | | -| `chacha20-poly1305` | Software optimized, 2-3x faster than AES, ideal for high-throughput and mobile applications | |
| 108 | +| `aes-256-gcm` | Hardware accelerated, industry standard | |
| 109 | +| `chacha20-poly1305` | Software optimized, 2-3x faster than AES | |
110 | 110 |
|
111 | 111 | ### 🔑 Key Derivation Options |
112 | 112 |
|
113 | 113 | | Value | Description | |
114 | 114 | |-------|-------------| |
115 | | -| `basic` | Fast salt + secret concatenation, perfect for high-performance applications | |
116 | | -| `pbkdf2` | Secure 50K iterations with SHA-256, ideal for enterprise and high-security applications | |
| 115 | +| `basic` | Fast salt + secret concatenation | |
| 116 | +| `pbkdf2` | Secure 50K iterations with SHA-256 | |
117 | 117 |
|
118 | 118 | ### ⏰ Time Format |
119 | 119 |
|
@@ -327,11 +327,15 @@ try { |
327 | 327 |
|
328 | 328 | --- |
329 | 329 |
|
330 | | -## 🏗️ Architecture |
331 | | -For detailed architecture diagrams and technical implementation details, see [ARCHITECTURE.md](ARCHITECTURE.md). |
| 330 | +## 📚 Documentation |
332 | 331 |
|
333 | | -## ⚡ Performance |
334 | | -For detailed benchmark results and performance metrics, see [BENCHMARK.md](BENCHMARK.md). |
| 332 | +| Topic | Description | |
| 333 | +|-------|-------------| |
| 334 | +| 🏗️ [ARCHITECTURE](ARCHITECTURE.md) | Technical implementation details and diagrams | |
| 335 | +| ⚡ [BENCHMARK](BENCHMARK.md) | Benchmark results and performance metrics | |
| 336 | +| 📚 [EXAMPLES](examples/) | Integration examples and usage patterns | |
| 337 | +| | • [HTTP Server](examples/http-server/README.md) - Server middleware and RBAC examples | |
| 338 | +| | • [Salt & Hash](examples/salt-hash/README.md) - Key rotation pattern and crypto utilities | |
335 | 339 |
|
336 | 340 | --- |
337 | 341 |
|
|
0 commit comments