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
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
// Copyright (c) 2026 Christoph Gaffga
// SPDX-License-Identifier: GPL-3.0-only
// https://github.com/cgaffga/phasmcore

//! Encode quality scoring: Stealth (Ghost) and Robustness (Armor).
//!
//! After encoding, these functions compute a 0-100% quality score that
//! indicates how well-hidden (Ghost) or how robust (Armor) the encoded
//! message is. The score is displayed in the mobile app HUD and encode
//! success screen.

use crate::det_math::det_exp;

/// Encode quality result returned alongside stego bytes.
#[derive(Debug, Clone)]
pub struct EncodeQuality {
    /// Overall score 0-100.
    pub score: u8,
    /// Localization key for a contextual hint (e.g. "hint_high_rate").
    pub hint_key: String,
    /// Mode: 1 = Ghost (stealth), 2 = Armor (robustness).
    pub mode: u8,
}

/// Maximum embedding rate for Ghost stealth scoring.
/// alpha = modifications / positions. At alpha_max, rate_score = 0.
const ALPHA_MAX: f64 = 0.5;

/// Inputs for Ghost stealth score computation.
pub struct GhostMetrics {
    /// Number of STC modifications (cover != stego).
    pub num_modifications: usize,
    /// Number of cover positions used by STC (n_used).
    pub n_used: usize,
    /// STC width parameter.
    pub w: usize,
    /// Total distortion cost from STC embedding.
    pub total_cost: f64,
    /// Median cost across all positions (before STC).
    pub median_cost: f32,
    /// Whether SI-UNIWARD (Deep Cover) was used.
    pub is_si: bool,
    /// Number of shadow LSB modifications (0 if no shadows).
    pub shadow_modifications: usize,
    /// Total number of Y-channel coefficients in the image.
    pub total_coefficients: usize,
}

/// Compute Ghost stealth score (0-100).
///
/// Five weighted factors + shadow penalty:
/// - 30% embedding rate
/// - 25% cost distribution quality (median cost proxy)
/// - 20% STC width
/// - 15% avg distortion per change
/// - 10% SI-UNIWARD bonus
/// - Shadow penalty: up to -15 points for LSB modifications
pub fn ghost_stealth_score(m: &GhostMetrics) -> EncodeQuality {
    let alpha = if m.n_used > 0 {
        m.num_modifications as f64 / m.n_used as f64
    } else {
        1.0
    };

    // Factor 1: Embedding rate (30%)
    // Lower alpha = stealthier. Quadratic falloff.
    let rate_ratio = (alpha / ALPHA_MAX).min(1.0);
    let rate_score = 100.0 * (1.0 - rate_ratio) * (1.0 - rate_ratio);

    // Factor 2: Cost distribution quality (25%)
    // Higher median cost = image has more texture = better hiding.
    // Median cost of 20+ is excellent; below 3 is poor.
    let cost_score = 100.0 * (1.0 - ((m.median_cost as f64 - 3.0).max(0.0) / 17.0).min(1.0));
    // Invert: high median = hiding in texture = good
    let cost_score = 100.0 - cost_score;

    // Factor 3: STC width (20%)
    // Higher w = more coding slack = fewer modifications.
    // tanh(w/5) gives ~100 for w>=5, ~38 for w=1.
    let w_f = m.w as f64;
    let width_score = 100.0 * det_tanh(w_f / 5.0);

    // Factor 4: Avg distortion per change (15%)
    // Lower avg cost per modification = changes blend into noise.
    let avg_cost = if m.num_modifications > 0 {
        m.total_cost / m.num_modifications as f64
    } else {
        0.0
    };
    let distort_score = 100.0 * (1.0 - ((avg_cost - 3.0) / 17.0).clamp(0.0, 1.0));

    // Factor 5: SI-UNIWARD bonus (10%)
    let si_score = if m.is_si { 100.0 } else { 0.0 };

    let base_stealth = 0.30 * rate_score
        + 0.25 * cost_score
        + 0.20 * width_score
        + 0.15 * distort_score
        + 0.10 * si_score;

    // Shadow penalty: up to -15 points for LSB modifications.
    let shadow_penalty = if m.shadow_modifications > 0 && m.total_coefficients > 0 {
        let shadow_mod_ratio = m.shadow_modifications as f64 / m.total_coefficients as f64;
        15.0 * (shadow_mod_ratio / 0.01).min(1.0)
    } else {
        0.0
    };

    let stealth = (base_stealth - shadow_penalty).clamp(0.0, 100.0);
    let score = stealth.round() as u8;

    // Pick hint based on weakest factor.
    let factors = [
        (rate_score, "hint_high_rate"),
        (cost_score, "hint_low_texture"),
        (width_score, "hint_low_width"),
        (distort_score, "hint_high_distortion"),
    ];
    let hint_key = if shadow_penalty > 5.0 {
        "hint_shadow_penalty"
    } else if m.is_si && score >= 70 {
        "hint_si_bonus"
    } else {
        // Pick the weakest factor.
        factors.iter()
            .min_by(|a, b| a.0.partial_cmp(&b.0).unwrap_or(std::cmp::Ordering::Equal))
            .map_or("hint_high_rate", |(_, key)| *key)
    };

    EncodeQuality {
        score,
        hint_key: hint_key.to_string(),
        mode: 1,
    }
}

/// Inputs for Armor robustness score computation.
pub struct ArmorMetrics {
    /// Repetition factor (1 = Phase 1, 3+ = Phase 2, 15+ = Fortress).
    pub repetition_factor: usize,
    /// RS parity symbols per block (64/128/192/240).
    pub parity_symbols: usize,
    /// Whether Fortress sub-mode (BA-QIM) was used.
    pub fortress: bool,
    /// Mean quantization table value (AC positions zigzag 1..=15).
    /// Higher = lower QF = more robust STDM embedding.
    pub mean_qt: f64,
    /// Payload fill ratio (0.0-1.0). Lower = more room for redundancy.
    pub fill_ratio: f64,
    /// STDM delta strength.
    pub delta: f64,
}

/// Compute Armor robustness score (0-100).
///
/// When Fortress is active, six weighted factors:
/// - 30% repetition, 20% parity, 15% Fortress bonus, 15% QT resilience,
///   10% fill, 10% delta
///
/// When Fortress is NOT active, the 15% Fortress weight is redistributed
/// proportionally to the other five factors (~35/24/18/12/12%).
/// This prevents a hard cap on standard Armor scores.
pub fn armor_robustness_score(m: &ArmorMetrics) -> EncodeQuality {
    // Factor 1: Repetition factor
    // r >= 7 is strong. Linear scale.
    let rep_score = 100.0 * (m.repetition_factor as f64 / 7.0).min(1.0);

    // Factor 2: Parity ratio
    // 240 is maximum.
    let parity_score = 100.0 * (m.parity_symbols as f64 / 240.0).min(1.0);

    // Factor 3: Fortress activation
    let fortress_score = if m.fortress { 100.0 } else { 0.0 };

    // Factor 4: QT resilience (continuous, from mean quantization table value)
    // Higher mean_qt = lower QF = larger quant steps = more robust STDM.
    // mean_qt >= 20 (roughly QF 55-60) is excellent; mean_qt ~2 (QF 95) is fragile.
    let qt_score = 100.0 * (m.mean_qt / 20.0).min(1.0);

    // Factor 5: Fill ratio
    // Lower fill = more room for redundancy.
    let fill_score = 100.0 * (1.0 - m.fill_ratio.clamp(0.0, 1.0));

    // Factor 6: Delta strength
    // delta >= 40 is excellent.
    let delta_score = 100.0 * (m.delta / 40.0).min(1.0);

    // When Fortress is active, use full 6-factor weights.
    // When not active, redistribute Fortress's 15% to the other 5 factors
    // so standard Armor isn't hard-capped at ~85%.
    let robustness = if m.fortress {
        0.30 * rep_score
            + 0.20 * parity_score
            + 0.15 * fortress_score
            + 0.15 * qt_score
            + 0.10 * fill_score
            + 0.10 * delta_score
    } else {
        // Redistribute: divide each weight by 0.85 (sum of non-fortress weights)
        (0.30 / 0.85) * rep_score
            + (0.20 / 0.85) * parity_score
            + (0.15 / 0.85) * qt_score
            + (0.10 / 0.85) * fill_score
            + (0.10 / 0.85) * delta_score
    };

    let score = robustness.round().clamp(0.0, 100.0) as u8;

    // Pick hint based on dominant/weakest factor.
    let hint_key = if m.fortress {
        "hint_fortress_active"
    } else {
        let factors = [
            (rep_score, "hint_low_repetition"),
            (parity_score, "hint_low_parity"),
            (qt_score, "hint_high_qf"),
            (fill_score, "hint_high_fill"),
            (delta_score, "hint_low_delta"),
        ];
        // Pick the weakest factor.
        factors.iter()
            .min_by(|a, b| a.0.partial_cmp(&b.0).unwrap_or(std::cmp::Ordering::Equal))
            .map_or("hint_low_repetition", |(_, key)| *key)
    };

    EncodeQuality {
        score,
        hint_key: hint_key.to_string(),
        mode: 2,
    }
}

/// Deterministic tanh approximation (avoids f64::tanh which is not
/// deterministic on WASM). Uses the identity tanh(x) = (e^2x - 1)/(e^2x + 1)
/// with det_math::det_exp for the exponential.
fn det_tanh(x: f64) -> f64 {
    if x > 10.0 { return 1.0; }
    if x < -10.0 { return -1.0; }
    // f64::exp is NOT IEEE 754 mandated to be correctly-rounded — it lowers to
    // libm / Math.exp on WASM, breaking cross-platform reproducibility. Use
    // det_exp for bit-exact behaviour across iOS / Android / x86_64 / WASM.
    let e2x = det_exp(2.0 * x);
    (e2x - 1.0) / (e2x + 1.0)
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn ghost_perfect_stealth() {
        let m = GhostMetrics {
            num_modifications: 0,
            n_used: 10000,
            w: 10,
            total_cost: 0.0,
            median_cost: 20.0,
            is_si: true,
            shadow_modifications: 0,
            total_coefficients: 100000,
        };
        let q = ghost_stealth_score(&m);
        assert_eq!(q.mode, 1);
        assert!(q.score >= 90, "expected >= 90 for perfect stealth, got {}", q.score);
    }

    #[test]
    fn ghost_worst_case() {
        let m = GhostMetrics {
            num_modifications: 5000,
            n_used: 10000,
            w: 1,
            total_cost: 100000.0,
            median_cost: 1.0,
            is_si: false,
            shadow_modifications: 0,
            total_coefficients: 100000,
        };
        let q = ghost_stealth_score(&m);
        assert!(q.score <= 30, "expected <= 30 for worst case, got {}", q.score);
    }

    #[test]
    fn ghost_shadow_penalty() {
        let base = GhostMetrics {
            num_modifications: 100,
            n_used: 10000,
            w: 7,
            total_cost: 500.0,
            median_cost: 15.0,
            is_si: false,
            shadow_modifications: 0,
            total_coefficients: 100000,
        };
        let no_shadow = ghost_stealth_score(&base);

        let with_shadow = GhostMetrics {
            num_modifications: 100,
            n_used: 10000,
            w: 7,
            total_cost: 500.0,
            median_cost: 15.0,
            is_si: false,
            shadow_modifications: 1000,
            total_coefficients: 100000,
        };
        let shadow_q = ghost_stealth_score(&with_shadow);
        assert!(shadow_q.score < no_shadow.score, "shadow penalty should reduce score");
        assert_eq!(shadow_q.hint_key, "hint_shadow_penalty");
    }

    #[test]
    fn ghost_si_bonus() {
        let without_si = GhostMetrics {
            num_modifications: 50,
            n_used: 10000,
            w: 8,
            total_cost: 200.0,
            median_cost: 15.0,
            is_si: false,
            shadow_modifications: 0,
            total_coefficients: 100000,
        };
        let with_si = GhostMetrics {
            num_modifications: 50,
            n_used: 10000,
            w: 8,
            total_cost: 200.0,
            median_cost: 15.0,
            is_si: true,
            shadow_modifications: 0,
            total_coefficients: 100000,
        };
        let q1 = ghost_stealth_score(&without_si);
        let q2 = ghost_stealth_score(&with_si);
        assert!(q2.score > q1.score, "SI should increase score");
        assert_eq!(q2.hint_key, "hint_si_bonus");
    }

    #[test]
    fn armor_fortress_high_score() {
        let m = ArmorMetrics {
            repetition_factor: 15,
            parity_symbols: 240,
            fortress: true,
            mean_qt: 10.0,
            fill_ratio: 0.3,
            delta: 12.0,
        };
        let q = armor_robustness_score(&m);
        assert_eq!(q.mode, 2);
        assert!(q.score >= 75, "expected >= 75 for fortress, got {}", q.score);
        assert_eq!(q.hint_key, "hint_fortress_active");
    }

    #[test]
    fn armor_phase1_low_score() {
        let m = ArmorMetrics {
            repetition_factor: 1,
            parity_symbols: 64,
            fortress: false,
            mean_qt: 3.0,
            fill_ratio: 0.9,
            delta: 5.0,
        };
        let q = armor_robustness_score(&m);
        assert!(q.score <= 40, "expected <= 40 for phase1 near capacity, got {}", q.score);
    }

    #[test]
    fn armor_phase2_medium_score() {
        let m = ArmorMetrics {
            repetition_factor: 5,
            parity_symbols: 192,
            fortress: false,
            mean_qt: 15.0,
            fill_ratio: 0.5,
            delta: 20.0,
        };
        let q = armor_robustness_score(&m);
        assert!(q.score >= 50 && q.score <= 85, "expected 50-85, got {}", q.score);
    }

    #[test]
    fn armor_qf50_max_resilience() {
        let m = ArmorMetrics {
            repetition_factor: 7,
            parity_symbols: 240,
            fortress: false,
            mean_qt: 25.0,
            fill_ratio: 0.2,
            delta: 40.0,
        };
        let q = armor_robustness_score(&m);
        assert!(q.score >= 80, "expected >= 80 for QF50 + r=7, got {}", q.score);
    }

    #[test]
    fn score_clamped_0_100() {
        // Extreme metrics shouldn't produce values outside 0-100.
        let q = ghost_stealth_score(&GhostMetrics {
            num_modifications: 100000,
            n_used: 1,
            w: 0,
            total_cost: 999999.0,
            median_cost: 0.0,
            is_si: false,
            shadow_modifications: 100000,
            total_coefficients: 1,
        });
        assert!(q.score <= 100);

        let q = armor_robustness_score(&ArmorMetrics {
            repetition_factor: 100,
            parity_symbols: 500,
            fortress: true,
            mean_qt: 50.0,
            fill_ratio: -1.0,
            delta: 100.0,
        });
        assert!(q.score <= 100);
    }

    #[test]
    fn det_tanh_basics() {
        assert!((det_tanh(0.0)).abs() < 1e-10);
        assert!((det_tanh(1.0) - 0.7615941559557649).abs() < 1e-10);
        assert!((det_tanh(20.0) - 1.0).abs() < 1e-10);
        assert!((det_tanh(-20.0) + 1.0).abs() < 1e-10);
    }
}