fix: des guide

This commit is contained in:
Kristofers Solo 2025-11-26 06:26:04 +02:00
parent 187d25d538
commit b81b87e6db
Signed by: kristoferssolo
GPG Key ID: 8687F2D3EEE6F0ED

View File

@ -62,13 +62,13 @@ cargo run --bin cli -- decrypt -a aes -k <KEY> <MESSAGE>
To encrypt a message with DES: To encrypt a message with DES:
```bash ```bash
cargo run --bin cli -- encrypt des -k <KEY> <MESSAGE> cargo run --bin cli -- encrypt -a des -k <KEY> <MESSAGE>
``` ```
To decrypt a message with DES: To decrypt a message with DES:
```bash ```bash
cargo run --bin cli -- decrypt des -k <KEY> <MESSAGE> cargo run --bin cli -- decrypt -a des -k <KEY> <MESSAGE>
``` ```
### Web Interface ### Web Interface