Compare commits
3 Commits
cfc8eee25a
...
ab676217cd
Author | SHA1 | Date | |
---|---|---|---|
ab676217cd | |||
49a04bebb6 | |||
6b0b1ab132 |
13
README.md
Normal file
13
README.md
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# 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](./media/aes_enc.jpg)
|
||||||
|
|
||||||
|
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.
|
1
aes.html
1
aes.html
@ -11,6 +11,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>encryptme</h1>
|
<h1>encryptme</h1>
|
||||||
|
<h1>AES</h1>
|
||||||
<script src="scripts/interface.js"></script>
|
<script src="scripts/interface.js"></script>
|
||||||
<script src="scripts/aes.js"></script>
|
<script src="scripts/aes.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
BIN
media/aes_dec_dark.jpg
Normal file
BIN
media/aes_dec_dark.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 106 KiB |
BIN
media/aes_enc.jpg
Normal file
BIN
media/aes_enc.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 120 KiB |
Loading…
x
Reference in New Issue
Block a user