#testing #nist #statistical #standard #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

#1259 in Algorithms

Download history 6/week @ 2024-02-12 25/week @ 2024-02-26 57/week @ 2024-04-01

57 downloads per month
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