From 6b0b1ab132d82ea328322692bba97fd446c4b313 Mon Sep 17 00:00:00 2001 From: dogeystamp Date: Sun, 22 Jan 2023 14:48:22 -0500 Subject: [PATCH] add README.md --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..86fb507 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# 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](https://dogeystamp.github.io/encryptme/aes.html) + + This uses PBKDF2 to convert a password to a key, then uses 256-bit AES-GCM + to encrypt a given message.