An open API service indexing awesome lists of open source software.

https://github.com/hrichharms/rust-lsb

Simple least significant bit (LSB) image steganography algorithm implemented in Rust.
https://github.com/hrichharms/rust-lsb

lsb lsb-algorithm lsb-bit-manipulation lsb-steganography steganography

Last synced: 3 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# rust-lsb
Simple least significant bit (LSB) image steganography algorithm implemented in Rust.

## Usage

To enode a file into an image:

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

To extract an encoded file from an image:

```console
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