@periodic/tungsten 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +44 -0
- package/LICENSE +21 -0
- package/README.md +814 -0
- package/dist/index.d.mts +357 -0
- package/dist/index.d.ts +357 -0
- package/dist/index.js +557 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +529 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +79 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to @periodic/tungsten will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [1.0.0] - 2024-02-15
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **JWT Access Tokens**: `signAccessToken()` and `verifyAccessToken()` with HS256/RS256 support
|
|
13
|
+
- **Refresh Token Rotation**: `rotateRefreshToken()` with replay protection
|
|
14
|
+
- **Password Hashing**: Argon2id implementation with secure defaults
|
|
15
|
+
- **API Key Generation**: Cryptographically secure key generation with prefix support
|
|
16
|
+
- **Opaque Tokens**: Session identifier generation and hashing
|
|
17
|
+
- **TOTP**: RFC 6238 compliant time-based one-time passwords
|
|
18
|
+
- **HMAC Signing**: Request signing with timestamp-based replay protection
|
|
19
|
+
- **Cookie Utilities**: Secure cookie configuration helpers
|
|
20
|
+
- **Key Providers**: SimpleKeyProvider, RotatingKeyProvider, and MultiTenantKeyProvider
|
|
21
|
+
- **Security Event Hooks**: Interface for monitoring security events
|
|
22
|
+
- **Instrumentation Adapter**: Interface for metrics collection
|
|
23
|
+
- **Timing-Safe Comparisons**: Prevent timing attacks in verification operations
|
|
24
|
+
- **Comprehensive Test Suite**: 80%+ code coverage
|
|
25
|
+
- **Full TypeScript Support**: Strict mode with complete type definitions
|
|
26
|
+
- **ESM + CJS Output**: Dual module format support
|
|
27
|
+
- **Tree-Shakeable**: Optimized for modern bundlers
|
|
28
|
+
|
|
29
|
+
### Security
|
|
30
|
+
|
|
31
|
+
- All cryptographic operations use timing-safe comparisons
|
|
32
|
+
- Argon2id with memory-hard configuration (64MB, 3 iterations)
|
|
33
|
+
- Minimum key lengths enforced (16 bytes for API keys)
|
|
34
|
+
- Password length limits (max 128 characters)
|
|
35
|
+
- No secret leakage in error messages
|
|
36
|
+
- Constant-time password verification
|
|
37
|
+
|
|
38
|
+
### Documentation
|
|
39
|
+
|
|
40
|
+
- Complete API reference
|
|
41
|
+
- Security best practices guide
|
|
42
|
+
- Production deployment examples
|
|
43
|
+
- Architecture documentation
|
|
44
|
+
- Contributing guidelines
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Periodic Team
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|