encryptme/README.md

42 lines
725 B
Markdown
Raw Normal View History

2023-01-22 14:48:22 -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.
2023-01-22 15:10:17 -05:00
![AES encryption page](./media/aes_enc.jpg)
2023-01-22 14:48:22 -05:00
Currently, the following algorithms are implemented:
* [AES encryption/decryption](https://dogeystamp.github.io/encryptme/aes.html)
2023-01-29 21:06:24 -05:00
This uses PBKDF2 to convert a password to a key, then uses AES
2023-01-22 14:48:22 -05:00
to encrypt a given message.
2023-01-30 22:10:56 -05:00
## Installation
Clone the repo:
```
git clone https://github.com/dogeystamp/encryptme
```
Install packages:
```
npm install
```
## Running
Start development server:
```
npm run start
```
Or, compile to `dist/`:
```
npm run build
```