What the Encryption / Decryption Tool Does and Why It Matters
This tool encrypts and decrypts text with AES, a widely trusted symmetric cipher, using a passphrase you supply. Encryption turns readable text into ciphertext that is meaningless without the key; decryption reverses the process when the correct key is provided.
It is handy for protecting a note, a snippet, or a short message before storing or sharing it through a channel you do not fully control. Because the cryptography runs through the browser’s Web Crypto API, your plaintext and your key stay on your device throughout the operation.
How to Use the Encryption Tool
- Enter the text you want to protect, or paste ciphertext you want to read.
- Type a strong passphrase or key; the same key is required to decrypt later.
- Choose the Encrypt or Decrypt action.
- Run the operation and review the result.
- Copy the ciphertext for storage, or the recovered plaintext for use.
- Record the key somewhere safe — without it the ciphertext cannot be recovered.
Supported Inputs and Limitations
What you provide
- Plaintext to encrypt or ciphertext to decrypt
- A passphrase / key that you choose and remember
- The direction of the operation (encrypt or decrypt)
What you get
- AES ciphertext you can copy and store
- Recovered plaintext when the correct key is given
- Clear warnings about key handling
Known limitations
- If you lose the key there is no recovery path; the ciphertext is permanently unreadable.
- The strength of the protection depends entirely on the strength and secrecy of your passphrase.
- This is a convenience tool for small text, not a replacement for a vetted secrets-management system in regulated environments.
Privacy and Security
Encryption and decryption run locally through the Web Crypto API. Your plaintext and your key are never transmitted to NovaTools or any third party, and nothing is stored after you leave the page. Still, only enter secrets here on a trusted device, and follow your organisation’s policy for anything regulated or production-critical.
Frequently Asked Questions
What happens if I forget the key?
The data cannot be recovered. AES is designed so that without the correct key the ciphertext is computationally infeasible to read, so store the key carefully and separately from the ciphertext.
Is the encryption done on a server?
No. It uses the browser’s Web Crypto API, so both the text and the key stay on your device. No plaintext or key is ever uploaded.
How strong is the protection?
AES itself is strong, but the real-world security depends on your passphrase. A long, unique, hard-to-guess key gives strong protection; a short or reused one undermines it regardless of the algorithm.
