QR code with encrypted content
Last updated Apr 9, 2026
55
Stars
4
Forks
0
Issues
0
Stars/day
Attention Score
7
Language breakdown
Rust 100.0%
โธ Files
click to expand
README
qrcode-encrypt
Encryption
- the key doesn't require (if the key isn't required, write
--keyin the<key>clause)
base64
- hex
- morse
- rot13
- text
- the key is required
caesar - key type: Number
- scytale - key type: Number
- vigenere - key type: String
- porta - key type: String
If you want to create a QRcode
cargo run create <encryption> <key> <text>
If you want to read a QRcode
cargo run scan <encryption> <key> <filename>
For Example
- Create/Read a QRcode with key
cargo run create caesar 4 some-text
- cargo run scan vigenere abc qrcode.png
- Create/Read a QRcode without key
cargo run create base64 --key some-text
- cargo run scan morse --key qrcode.png
Attention
- if you enter the arguments correctly when starting the project to create a qr code, you will get a
qrcode.png - if you enter the arguments correctly when reading the qr code, you will get the
result-qrcode.txtwith the result inside the file
๐ More in this category