phasm-core 0.2.4

Pure-Rust steganography engine — hide encrypted messages in JPEG photos
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2026 Christoph Gaffga
// SPDX-License-Identifier: GPL-3.0-only
// https://github.com/cgaffga/phasmcore

//! Shared integration-test helpers. Each file under `tests/` is compiled
//! as its own crate, so code shared across tests goes here and is
//! included with `mod common;` + `use common::*;` in each test file.

#![allow(dead_code)] // not every test file uses every helper

pub mod h264_oracle;