This is a simple site for encrypting any text data like passwords, credit card info, personal info, crypto keys, etc.
URL: https://encrypt-decrypt.me
| Specs | |
|---|---|
| Algorithm | AES256-CBC-PBKDF2 |
| Standard | AES |
| Type | CBC |
| Size of key | 256 bits |
| Size of salt | 8 bytes |
| KDF (Key derivation function) | PBKDF2 |
Libraries used: CryptoJS
Open site.html Note: NodeJS scripts are for testing only.
Enter Text and Password, select Encrypt
Enter Cipher Text and Password, select Decrypt
This is compatible encryption with OpenSSL aes-256-cbc -pbkdf2
echo -n "my-text" | openssl aes-256-cbc -a -p -pbkdf2 --pass pass:"my-password"
Enter cipher text after echo
echo "U2FsdGVkX1/ybPS+ooh2sZDbd8mC0toqkvhcXhlpRIw=" | openssl aes-256-cbc -d -a -p -pbkdf2 --pass pass:"my-password"
You can remove --pass flag and get a prompt for the password instead.