#testing #nist #standard #statistical #his

nistrs

his crate implements statistical tests according to the NIST standard

3 releases

0.1.2 Dec 18, 2022
0.1.1 Nov 23, 2022
0.1.0 Nov 23, 2022

#1283 in Algorithms


Used in guinistrs

MIT license

4.5MB
133K SLoC

Rust codecov CodeFactor Average time to resolve an issue Percentage of issues still open

nistrs

This crate implements statistical tests according to the NIST standard.

Example usage:

use nistrs::prelude::*;

let data = BitsData::from_binary(vec!(0x23, 0x44));
let result = frequency_test(&data);
print!("Test passed: {}; P-value: {}", result.0, result.1);

Dependencies

~9MB
~171K SLoC