//! Obfuscation hooks (§17). The guest does NOT obfuscate itself; the
//! dig-capsule-compiler applies WASM-level passes (instruction substitution,
//! opaque predicates, bogus code, control-flow nops). This module exposes a
//! stable, no-op "opaque predicate" seam the compiler can recognize and expand,
//! plus a marker so the pass can locate hookable functions. Keeping the seam
//! here (rather than ad hoc) makes the obfuscation pass deterministic (§19.3).
/// An opaque-predicate seam: always returns true, but is shaped so the compiler
/// pass can replace it with a non-trivially-true predicate over injected state.
/// Marker the obfuscation pass scans for to find hookable control points.