Crates.io | stegray |
lib.rs | stegray |
version | 0.0.1 |
source | src |
created_at | 2018-11-03 06:13:11.825655 |
updated_at | 2018-11-03 06:13:11.825655 |
description | Data type for steg the command line steganography tool |
homepage | |
repository | https://github.com/peterheesterman/stegray |
max_upload_size | |
id | 94467 |
size | 16,109 |
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