veilus-fingerprint 0.1.0

High-performance browser fingerprint generator using Bayesian networks — browserforge-compatible, statistically realistic
Documentation
1
2
3
4
5
6
7
8
9
10
/// Ancestral sampler for Bayesian network traversal.
///
/// Exposes [`sample_ancestral`] and [`sample_constrained`].
pub mod sampler;

/// Constraint-based rejection sampler.
pub mod constraints;

pub use constraints::{sample_constrained, Constraints};
pub use sampler::sample_ancestral;