Simple online cryptography app.
Go to file
2023-01-22 15:24:33 -05:00
scripts added licensing information 2023-01-22 14:21:42 -05:00
aes.html refactor form generation 2023-01-03 15:34:57 -05:00
index.html index.html: added barebones index page 2023-01-22 13:52:05 -05:00
LICENSE added licensing information 2023-01-22 14:21:42 -05:00
README.md add README.md 2023-01-22 15:24:33 -05:00
style.css styled tabs properly 2023-01-21 16:22:40 -05:00

encryptme

encryptme is a website that provides cryptography tools based on the browser's SubtleCrypto API. It aims to be simple to use, but also allow users to tinker with more advanced options if needed.

Currently, the following algorithms are implemented:

  • AES encryption/decryption

    This uses PBKDF2 to convert a password to a key, then uses 256-bit AES-GCM to encrypt a given message.