Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 450 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 450 Bytes

rust-lsb

Simple least significant bit (LSB) image steganography algorithm implemented in Rust.

Usage

To enode a file into an image:

rust-lsb hidden_message.txt host_image.png encoded.png

To extract an encoded file from an image:

rust-lsb encoded.png hidden_message.txt

Todo

  • Implement variable bit usage i.e. use 2 least significant bits etc.
  • Implement better logging
  • Implement better error handling