Simple online tools for developers, networking, text and conversions.

Developer Tools

AES Encrypt

Encrypt text with AES instantly using a passphrase-based browser tool.

Tool

Use this AES Encrypt tool to encrypt plain text with AES and return Base64 ciphertext. It is useful for demos, browser-side encryption tests, reversible development workflows, and understanding how passphrase-based AES transforms readable input into encrypted output.

About this tool

Use this AES Encrypt tool to encrypt plain text with AES and return Base64 ciphertext. It is useful for demos, browser-side encryption tests, reversible development workflows, and understanding how passphrase-based AES transforms readable input into encrypted output.

Use aes encrypt when you need a fast browser-based result without extra setup. It works well for quick checks, one-off tasks, and routine formatting or calculation work.

Learn more

Why use this tool

How to use

  1. Enter the passphrase on the first line
  2. Paste the plaintext below it
  3. Click Run Tool to encrypt the text
  4. Review the Base64 ciphertext output
  5. Use AES Decrypt with the same passphrase to reverse it

Examples

Example

Input

secret123
hello world

Output

Base64 encrypted text

The first line is the passphrase and the lines below are the plaintext.

Example

Input

demo-key
{"name":"John","role":"admin"}

Output

Base64 encrypted text

Useful for testing how structured text looks after AES encryption.

Common errors

The user forgets to add a passphrase

Fix: Put the passphrase on the first line and the plaintext below it.

The wrong passphrase is used later during decryption

Fix: You must use the exact same passphrase to decrypt the ciphertext.

The input format is reversed

Fix: Always put the passphrase first and the plaintext below it.

The user expects hex output instead of Base64

Fix: This tool returns Base64 ciphertext for easier copy and reuse.

The user expects key-file or IV controls

Fix: This page is a simple passphrase-based AES tool, not an advanced crypto console.

FAQ

What does AES Encrypt do?

It encrypts plain text with AES and returns Base64 ciphertext.

How do I enter the passphrase?

Put the passphrase on the first line and the plaintext below it.

What output format does this tool return?

It returns Base64 ciphertext.

Can I decrypt the output later?

Yes, with the same passphrase using AES Decrypt.

What is the reverse of AES Encrypt?

The reverse tool is AES Decrypt.

Use cases

Related tools