-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# CoolTest | ||
|
||
CoolTest is a randomness-testing tool. It uses first half of provided data to construct a distinguisher in a three phase process. Then it evaluates the distinguisher on the second half of the data to evaluate the probability of the data being random. | ||
|
||
|
||
# How to use CoolTest | ||
|
||
## Setup | ||
1. You need to have [Rust](https://www.rust-lang.org/tools/install) and Python library [SciPy](https://scipy.org/install/) installed. | ||
|
||
|
||
2. Run `cargo build --release` | ||
|
||
## Run the tool | ||
|
||
You can use `./target/release/cooltest --help` to see all options. | ||
|
||
To run the tool with default parameters you can use: | ||
`./target/release/cooltest <file>` | ||
|
||
|
||
|
||
# License | ||
CoolTest is released under the MIT license. See See [LICENSE](LICENSE) for more information. |