Simple online cryptography app.
Go to file
dogeystamp 7ed8cc7e3a
aes.js: slight refactoring
preparing to implement other AES modes
2023-01-26 19:29:41 -05:00
media README: add preview picture 2023-01-22 15:24:36 -05:00
scripts aes.js: slight refactoring 2023-01-26 19:29:41 -05:00
aes.html aes.html: add title 2023-01-22 15:24:36 -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 README: add preview picture 2023-01-22 15:24:36 -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.

AES encryption page

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.