nistrs

Crates.ionistrs
lib.rsnistrs
version0.1.2
sourcesrc
created_at2022-11-23 10:56:11.161719
updated_at2022-12-18 12:16:18.750326
descriptionhis crate implements statistical tests according to the NIST standard
homepage
repositoryhttps://github.com/Omnissi/NISTRS
max_upload_size
id721523
size5,821,671
(Omnissi)

documentation

README

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);
Commit count: 15

cargo fmt