This crate implements statistical tests according to the NIST standard.
```rust use nistrs::prelude::*;
let data = BitsData::frombinary(vec!(0x23, 0x44)); let result = frequencytest(&data); print!("Test passed: {}; P-value: {}", result.0, result.1); ```