@hyperfrontend/cryptography
Production-grade cryptographic primitives with isomorphic APIs for browser and Node.js environments.
What is @hyperfrontend/cryptography?
@hyperfrontend/cryptography provides a comprehensive suite of cryptographic utilities designed for secure data handling in full-stack JavaScript applications. The library implements industry-standard encryption (AES-GCM), key derivation (PBKDF2), and hashing (SHA-256) with identical APIs across browser and Node.js environments, eliminating platform-specific code branching.
The library features three modular entry points: platform-specific implementations (/browser, /node) for optimized runtime performance, and a shared entry point (/common) for platform-agnostic utilities. Core capabilities include secure password-based encryption/decryption, cryptographic vault storage with single-use modes, time-based password generation for rotating credentials, and cryptographically-secure random value generation.
Key Features
- Isomorphic API Design - Write once, run everywhere with identical function signatures for browser Web Crypto API and Node.js crypto module
- AES-GCM Encryption - Industry-standard authenticated encryption with password-derived keys using PBKDF2 (100,000 iterations)
- Secure Vault Storage - Password-protected in-memory storage with optional single-use mode for sensitive data
- Time-Based Passwords - Generate rotating credentials synchronized to UTC time windows for short-lived authentication
- Cryptographic Hashing - SHA-256 hash generation with hexadecimal output and validation utilities
- Zero External Dependencies - Self-contained implementation using only platform crypto APIs
- Functional Architecture - Pure functions with dependency injection for testability and composability
- Secondary Entry Points - Tree-shakeable imports optimize bundle size (
/browser, /node, /common)
Architecture Highlights
Built on functional composition with dependency injection, allowing complete mocking in tests without module patching. All cryptographic operations use platform-native APIs (Web Crypto API in browsers, Node.js crypto module) wrapped in consistent interfaces. Encryption operations automatically generate unique salt and initialization vectors per operation, eliminating key reuse vulnerabilities.
Why Use @hyperfrontend/cryptography?
Eliminate Platform Branching in Isomorphic Applications
Full-stack applications typically require separate cryptography implementations for browser and server environments, leading to code duplication and testing complexity. This library provides identical APIs powered by platform-optimized implementations, allowing shared business logic for encryption workflows across your entire stack. Import from /browser or /node based on your runtime - the function signatures remain identical.
Production-Hardened Encryption Without Configuration Complexity
Implementing secure encryption requires careful selection of algorithms, key derivation parameters, and IV/salt generation strategies. This library encapsulates cryptographic best practices (PBKDF2 with 100,000 iterations, unique salt/IV per operation, AES-GCM authenticated encryption) in simple encrypt(message, password) and decrypt(encrypted, password) functions. No configuration decisions, no security footguns - just production-grade encryption out of the box.
Secure Credential Rotation with Time-Based Passwords
APIs requiring short-lived credentials (temporary links, time-boxed access tokens) need synchronized password generation across systems. The getTimeBasedPasswords() function generates cryptographically-secure passwords based on UTC time windows, enabling coordinated credential rotation without database round-trips. Generate passwords for current/previous/next windows to handle clock drift gracefully.
In-Memory Vaults for Sensitive Data Handling
Processing sensitive data (credit cards, API keys, personal information) in memory creates exposure risks during debugging and logging. The createVault() API provides encrypted storage with password protection - data is encrypted at rest in memory and requires the vault password for retrieval. Single-use mode automatically closes the vault after first read, preventing accidental data leakage in long-lived processes.
Dependency-Free Security for Minimal Attack Surface
Third-party cryptography libraries introduce supply chain risks and dependency bloat. This package uses only platform-native crypto APIs (Web Crypto API, Node.js crypto module) plus lightweight internal utilities, eliminating external dependencies. Smaller dependency trees mean fewer audit requirements and reduced attack surface for security-critical applications.
Installation
npm install @hyperfrontend/cryptography
Requirements
- Node.js: 18.0.0 or higher (19+ recommended for stable Web Crypto API support)
- npm: 8.0.0 or higher
- Browser: Modern browsers with Web Crypto API support
Note: The /node entry point uses webcrypto.subtle which was experimental in Node.js 18.x. For production use with the Node.js entry point, Node.js 19+ is recommended for stable crypto APIs.
Quick Start
Browser Environment
import { encrypt, decrypt, createVault, createHash } from '@hyperfrontend/cryptography/browser'
const message = 'Sensitive data'
const password = 'secure-password'
const encrypted = await encrypt(message, password)
const decrypted = await decrypt(encrypted, password)
const vault = createVault()
await vault.write('api-key', 'sk-1234567890')
const password = vault.getPassword()
const value = await vault.read('api-key', password)
const hash = await createHash('data-to-hash')
Node.js Environment
import { encrypt, decrypt, createVault, getTimeBasedPasswords } from '@hyperfrontend/cryptography/node'
const encrypted = await encrypt('Sensitive data', 'secure-password')
const decrypted = await decrypt(encrypted, 'secure-password')
const generators = getTimeBasedPasswords(new Date(), 300_000)
const currentPassword = await generators.current()
const previousPassword = await generators.previous()
Platform-Agnostic Utilities
import { isSHA256Hash } from '@hyperfrontend/cryptography/common'
isSHA256Hash('abc123')
isSHA256Hash('e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855')
API Overview
Encryption/Decryption
encrypt(message: string, password: string): Promise<Uint8Array> - Encrypt message with password-derived AES-GCM key
decrypt(encrypted: Uint8Array, password: string): Promise<string> - Decrypt message with password
Vault Storage
createVault(singleUse?: boolean): Vault - Create encrypted in-memory storage
vault.write(label: string, value: string): Promise<void> - Store encrypted value
vault.read(label: string, password: string): Promise<string | null> - Retrieve decrypted value
vault.getPassword(): string - Get vault password
vault.close(): void - Close vault permanently
Hashing
createHash(data: string, algorithm?: 'SHA-256' | 'SHA-384' | 'SHA-512'): Promise<string> - Generate cryptographic hash (hex string)
isSHA256Hash(hash: unknown): boolean - Validate SHA-256 hash format
Time-Based Passwords
getTimeBasedPassword(currentUtcTime: Date, baseTimeWindow: number, windowOffset?: -1 | 0 | 1): Promise<string> - Generate password for specific time window
getTimeBasedPasswords(currentUtcTime: Date, baseTimeWindow: number): TimeBasedPasswordGenerators - Create generators for current/previous/next windows
Key Generation & Random Values
generateKey(password: string, salt: Uint8Array): Promise<CryptoKey> - Derive encryption key using PBKDF2
getRandomValues(byteLength: number): Uint8Array - Generate cryptographically-secure random bytes
Compatibility
| Browser | ✅ |
| Node.js | ✅ |
| Web Workers | ✅ |
| Deno, Bun, Cloudflare Workers | ✅ |
Output Formats
| ESM | index.esm.js | ✅ |
| CJS | index.cjs.js | ❌ |
| IIFE | bundle/index.iife.min.js | ❌ |
| UMD | bundle/index.umd.min.js | ❌ |
Bundle size: 3 KB (minified, self-contained)
CDN Usage
<script src="https://unpkg.com/@hyperfrontend/cryptography"></script>
<script src="https://cdn.jsdelivr.net/npm/@hyperfrontend/cryptography"></script>
<script>
const { createHash, encrypt, decrypt } = HyperfrontendCryptography
</script>
Global variable: HyperfrontendCryptography
Part of hyperfrontend
This library is part of the hyperfrontend monorepo.
📖 Full documentation
License
MIT