2 stable releases
1.0.1 | Oct 7, 2024 |
---|---|
1.0.0 | Sep 29, 2024 |
#615 in Images
24KB
446 lines
HideQR
Embedding secret messages in QR-Codes.
Documentation
The secret message is embedded within a QR code by modifying specific modules of the original code. QR codes utilize error correction to ensure readability, which allows for some alterations without disrupting the overall function. By continuously altering the code, we introduce errors; however, standard QR code readers effectively ignore these errors due to the error correction mechanism. As a result, the presence of a hidden message remains undetectable.
Below is a comparison of a plain QR code (left) and the same code with the secret message embedded (right):
Installation with cargo (Linux, macOS, Windows)
cargo install hide_qr
Usage
This command line tool allows you to create and read QR-Codes.
Commands
-
Create QR-Code
Usage:-create [txt-message1] [txt-message2] [file_location (optional)]
Creates a file at the specified location containing two text messages. If no location is provided, the file will be created as ./default_qr_code.png -
Read QR-Code
Usage:-read [file_location]
Reads and displays the content of the specified file. -
Help
Usage:-help
Example
To create a QR code at the default path with the secret "password" embedded within the message "Hello World" (This will generate the corresponding QR code as shown above).
./hide_qr -create "Hello World" "password"
./hide_qr -c "Hello World" "password"
To read said QR-Code
./hide_qr -read "./default_qr_code.png"
./hide_qr -r "./default_qr_code.png"
This will yield:
$./hide_qr -r "./default_qr_code.png"
The QR-Code holds the data: Hello World
Embedded secret message: password
Dependencies
~8–17MB
~201K SLoC