Files
cryptothings/aes-encrypt-decrypt/how-to-use.md
2026-03-05 16:54:07 +02:00

20 lines
294 B
Markdown

## generate key via genkey
```sh
./genkey.sh miko089
```
you can change `miko089` to any nickname as you want
## encrypt
take public key of another people and
```sh
./encrypt.sh <key_path> <msg_path>
```
## decrypt
take your private key and
```sh
./decrypt.sh <key_path> <msg_encoded>
```