Crypto Tools
Cryptographic utilities and security tools.
-
Token Generator
Generate secure random tokens, passwords, and IDs.
-
Base64
Encode and decode Base64 for text, files, and Basic Auth.
-
Hash Generator
Compute hashes and HMACs across 27+ algorithms.
About Crypto Tools
LivHome's crypto tools are a free collection of browser-based utilities for generating secure tokens, encoding Base64, and computing cryptographic hashes. Everything runs entirely in your browser, so your input never leaves your device.
This category groups three privacy-focused tools for developers and anyone handling encoding or hashing: a Token Generator, a Base64 encoder/decoder, and a Hash Generator. They are meant for everyday tasks like creating random secrets, preparing data for transport, and verifying file or text integrity.
Use the Token Generator to create cryptographically secure random strings with crypto.getRandomValues(), choosing length, character pools, and count. Reach for Base64 to encode or decode text, images, files, or HTTP Basic Auth headers, with standard and Base64URL variants. Use the Hash Generator for hashes across 27+ algorithms (SHA-2, SHA-3, BLAKE3, and more) plus HMAC, hash verification, and key derivation such as PBKDF2, bcrypt, and Argon2.
All three tools process data locally in your browser and send nothing to a server, with tokens never stored in localStorage. Note that older algorithms like MD5 and SHA-1 are included for compatibility and checksums, not for security-critical use.
Frequently asked questions
- Are these crypto tools free to use?
- Yes. All three tools are completely free and require no sign-up or account.
- Does my data get sent to a server?
- No. The token generator, Base64 tool, and hash generator all run in your browser, so your input stays on your device.
- Which hash algorithm should I use?
- For general security use SHA-256 or stronger; MD5 and SHA-1 are provided only for legacy checksums and compatibility, not for protecting sensitive data.