pub fn generate_random_salt() -> u32Expand description
Generate a random session salt using system entropy.
Useful for automatically initializing sessions without manual seed management.
ยงExample
use palisade_errors::obfuscation;
// Auto-generate salt for this session
let salt = obfuscation::generate_random_salt();
obfuscation::init_session_salt(salt);