Encoding & Crypto— Guides & Articles
How to Generate a Password for 1Password Locally
Published 2026-08-07
Want to generate a password for your 1Password vault? Create a cryptographically random, high-entropy string in your browser with the local Password Generator.
Convert Any File to Base64 in Python Without Uploading
Published 2026-08-07
Convert a file to Base64 in Python with the base64 module or use the File to Base64 Converter for a no-upload browser workflow that preserves every byte up…
Base to Hex: Convert Encoded Bytes Without Losing a Zero
Published 2026-08-07
Convert Base64 to hex with strict RFC 4648 validation. Canonical padded input only, lowercase hex output, leading zeros preserved, runs locally in your browser.
Base64 Decode Bulk Pastes Without Stack Overflow
Published 2026-08-07
Paste a large Base64 string and decode it in your browser. The tool handles bulk pastes byte-by-byte, validates UTF-8 strictly, and never uploads a byte to…
Is XOR Encryption Secure? A Repeating-Key Reality Check
Published 2026-08-06
Repeating-key XOR is reversible obfuscation, not real encryption. See what the browser tool actually does, where it is unsafe, and which limits apply.
How to Decipher a Vigenere Cipher With a Known Key
Published 2026-08-06
Decipher a Vigenere cipher by pasting ciphertext, supplying the repeating A–Z key, and choosing Decrypt. Everything runs in your browser with no upload.
How to Change UTF-8 Encoding in Excel: Step by Step
Published 2026-08-06
Excel often misreads UTF-8 files as Windows-1252 and produces garbled characters. Convert the source file to UTF-8 first, then import it through Excel's…
How to Use an HTML Entity Encoder and Decoder
Published 2026-08-06
Encode reserved HTML characters and decode named, decimal, or hexadecimal character references back to text in your browser — no upload, no sanitization.
How to Decrypt a 2x2 Hill Cipher Using the mod 26 Inverse
Published 2026-08-06
To decrypt a 2x2 Hill cipher, invert the key matrix modulo 26 with A=0 to Z=25. See why coprime determinants and column vectors drive the recovered text.
AES Decrypt Online: Open a JSON Package With Its Password
Published 2026-08-06
AES decrypt online: turn a password-protected AES-256-GCM JSON package back into its original text in your browser. Local only, with strict authentication.