8 个版本 (3 个稳定版本)

使用旧 Rust 2015

1.0.2 2019年5月2日
1.0.1 2018年8月28日
1.0.0 2017年9月18日
0.2.3 2017年9月6日
0.1.0 2017年4月18日

#1605编码

47 每月下载量
3 crate 中使用

MIT 许可证

2MB
145 代码行

Build Status Build Status Build status Crates.io Crates.io Docs.rs dependency status

隐写术

一个用 Rust 编写的稳定隐写术库

Crates.io

使用方法

将以下内容添加到您项目的 Cargo.toml 中

[dependencies]
steganography = "*"

并使用 extern crate 导入

extern crate steganography;

/*
use steganography::encoder::*;
use steganography::decoder::*;
use steganography::util::*;
*/

将消息写入文件

//Define a secret message to hide in out picture
let message = "This is a steganography demo!".to_string();
//Convert our string to bytes
let payload = str_to_bytes(&message);
//Load the image where we want to embed our secret message
let destination_image = file_as_dynamic_image("example.jpg".to_string());
//Create an encoder
let enc = Encoder::new(payload, destination_image);
//Encode our message into the alpha channel of the image
let result = enc.encode_alpha();
//Save the new image
save_image_buffer(result, "hidden_message.png".to_string());

从文件中读取消息

//Load the image with the secret message
let encoded_image = file_as_image_buffer("examples/decode_message.png".to_string());
//Create a decoder
let dec = Decoder::new(encoded_image);
//Decode the image by reading the alpha channel
let out_buffer = dec.decode_alpha();
//If there is no alpha, it's set to 255 by default so we filter those out
let clean_buffer: Vec<u8> = out_buffer.into_iter()
                                    .filter(|b| {
                                        *b != 0xff_u8
                                    })
                                    .collect();
//Convert those bytes into a string we can read
let message = bytes_to_str(clean_buffer.as_slice());
//Print it out!
println!("{:?}", message);

运行示例

cargo build --example example_encode
cargo run --example example_encode
cargo build --example example_decode
cargo run --example example_decode

测试

cargo test -- --test-threads=1

依赖项

~13MB
~80K SLoC