This tool generates cryptographically secure random values using the browser Web Crypto API, including bytes, integers, and passwords.
Key Features
- Random bytes, integers, and password generation
- Output formats: Hex/Base64/Base64URL/Base32/Binary
- Batch generation with per-item copy
- Built-in presets for common security use cases
Steps
- Select random value type.
- Configure length/range/charset options.
- Generate and inspect output.
- Copy single result or batch results.
Use Cases
- API key/session token/OTP secret generation
- Randomized test data
- Security feature integration testing
Notes
- Prefer Web Crypto randomness for security-sensitive scenarios.
- Avoid
Math.random()for secret/token generation. - Align password rules with your security policy.