Online Text Encrypt/Decrypt Tool

* Encrypt/Decrypt process runs only on client side and not be sent to any server.

Encrypt

A text to enrypt:

A Passphrase. You have to share this with people you trust.

Push the button above and the encrypted data should appear here:

Decrypt

Paste the encrypted data:

The passphrase (you should be shared it from someone)

When everything is right, the original text appears here.

This tool works almost equivalently to:
echo '(original text)' | openssl aes-256-cbc -md md5 -e -base64
, so probably you can decrypt the data by:
echo '(encrypted data)' | openssl aes-256-cbc -md md5 -d -base64

top