//! White-box security audit test suite
//!
//! This module contains comprehensive white-box security tests that examine
//! the internal algorithm and try to break it by exploiting implementation
//! details, edge cases, and potential vulnerabilities.
//!
//! Tests are organized by category:
//! - `symlink`: Symlink cycle detection, visited sets, depth limits
//! - `dotdot`: Path traversal and .. resolution attacks
//! - `race`: Race conditions and TOCTOU vulnerabilities
//! - `unicode`: Unicode, encoding, and null byte injection
//! - `boundary`: Boundary detection and existing path edge cases
//! - `platform`: Platform-specific limits and behavior
//! - `memory`: Memory exhaustion and performance attacks
//! - `jail_escape`: High-level security validation tests
//! - `misc`: Miscellaneous white-box tests
//! - `unix`: Unix-specific security tests
//! - `windows`: Windows-specific security tests
// Platform-specific modules