From 1bf69ab7f14abf12aa4d512027ff83d088ac2c2e Mon Sep 17 00:00:00 2001 From: dogeystamp Date: Sun, 22 Jan 2023 14:48:22 -0500 Subject: [PATCH] add README.md restructured folders so that website files are in src/ --- README.md | 11 +++++++++++ aes.html => src/aes.html | 0 index.html => src/index.html | 0 {scripts => src/scripts}/aes.js | 0 {scripts => src/scripts}/interface.js | 0 style.css => src/style.css | 0 6 files changed, 11 insertions(+) create mode 100644 README.md rename aes.html => src/aes.html (100%) rename index.html => src/index.html (100%) rename {scripts => src/scripts}/aes.js (100%) rename {scripts => src/scripts}/interface.js (100%) rename style.css => src/style.css (100%) 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. diff --git a/aes.html b/src/aes.html similarity index 100% rename from aes.html rename to src/aes.html diff --git a/index.html b/src/index.html similarity index 100% rename from index.html rename to src/index.html diff --git a/scripts/aes.js b/src/scripts/aes.js similarity index 100% rename from scripts/aes.js rename to src/scripts/aes.js diff --git a/scripts/interface.js b/src/scripts/interface.js similarity index 100% rename from scripts/interface.js rename to src/scripts/interface.js diff --git a/style.css b/src/style.css similarity index 100% rename from style.css rename to src/style.css