//! Payload encoding strategies — transform payloads to bypass WAF keyword detection.
//!
//! Each strategy changes HOW the payload looks without changing WHAT it does.
//! The server decodes the payload back to its original form, but the WAF
//! fails to match it against its rules.
//!
//! # Module structure
//!
//! | Module | Responsibility |
//! |--------|---------------|
//! | [`strategy`] | `Strategy` enum and `encode()` dispatcher |
//! | [`url`] | URL, double-URL, and triple-URL encoding |
//! | [`unicode`] | Unicode `\uXXXX`, `%uXXXX`, JSON, and HTML entity encoding |
//! | [`keyword`] | Case alternation, whitespace/comment insertion, SQL obfuscation |
//! | [`structural`] | Null byte, overlong UTF-8, chunked split, HPP, compression |
//! | [`layered`] | Multi-strategy chaining and aggressiveness scoring |
/// Keyword manipulation strategies (case, whitespace, comments).
/// Multi-strategy layering and aggressiveness scoring.
/// Strategy enum and encode() dispatcher.
/// Structural encoding strategies (null byte, overlong UTF-8, chunked, HPP).
/// Unicode and HTML entity encoding strategies.
/// URL-based encoding strategies (single, double, triple).
// Re-export everything for backwards compatibility (LAW 2).
pub use ;
pub use ;