stegray

Crates.iostegray
lib.rsstegray
version0.0.1
sourcesrc
created_at2018-11-03 06:13:11.825655
updated_at2018-11-03 06:13:11.825655
descriptionData type for steg the command line steganography tool
homepage
repositoryhttps://github.com/peterheesterman/stegray
max_upload_size
id94467
size16,109
Peter Heesterman (peterheesterman)

documentation

README

( Work in progress )

stegray

steg(anography) - array

An intermediate data abstraction for 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
Commit count: 15

cargo fmt