stegoeggo 0.2.0

Image protection through steganographic watermarking and metadata injection for legal deterrence
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Protection modules for applying various protection strategies to images.
//!
//! This module contains the core protector implementations:
//! - [`SteganographyProtector`] - LSB/DCT steganographic embedding
//! - [`MetadataTrapProtector`] - Metadata injection for AI exclusion
//! - [`PassthroughProtector`] - No-op protector for disabled protection

pub mod constants;
pub(crate) mod ecc;
pub mod metadata_trap;
pub mod passthrough;
pub mod steganography;
#[cfg(feature = "fuzz")]
pub(crate) mod stego_cost;

// Re-exports are handled at the crate root level in lib.rs