//! Minimal XML parser with security hardening for SAML processing.
//!
//! # Security
//! - No DTD processing (prevents XXE attacks)
//! - No external entity resolution (prevents SSRF)
//! - Maximum depth limit (prevents billion-laughs)
//! - Maximum document size limit
pub use ;
/// Shared with the SAML layer so it can bound base64 input before decoding;
/// kept crate-internal rather than part of the public API.
pub use MAX_XML_SIZE;