1个不稳定版本
使用旧的Rust 2015
0.0.1 | 2018年11月3日 |
---|
#6 in #reveal
15KB
359 行
(进行中)
stegray
steg(隐写术) - 数组
steg的中间数据抽象。
pub struct StegrayMeta {
pub file_type: FileType,
pub length: u32,
}
// pub fn from_bytes(bytes: [u8; 5]) -> StegrayMeta
pub struct Stegray {
pub meta: StegrayMeta,
pub content: Vec<u8>,
pub shasum: String,
}
// pub fn get_meta_length() -> u32
// pub fn new(path: &str) -> Stegray
// pub fn save(&self, path: &str)
// pub fn to_byte_vector(&self) -> Vec<u8>
// pub fn from_byte_vector(data: Vec<u8>) -> Stegray
依赖
~4MB
~51K SLoC