From ea6789e5b33540270f5de3edb54264e6892fad73 Mon Sep 17 00:00:00 2001 From: Andreas Grois Date: Thu, 20 Oct 2022 21:42:07 +0200 Subject: Group Benchmarks, and make parameters more sane. The previous parameters for benchmarks were based on gut-feeling. Now each hash-length has 3 benchmarks: - Typical is a typical user input - Max Divisions is a full generate_password_part run - Worst Case is the worst user input possible: Base 2. --- Cargo.toml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 7980cd5..ac0ea6f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,5 +26,17 @@ ripemd = "0.1.3" criterion = "0.4.0" [[bench]] -name = "hashrate" -harness = false \ No newline at end of file +name = "hashrate_32" +harness = false + +[[bench]] +name = "hashrate_20" +harness = false + +[[bench]] +name = "hashrate_16" +harness = false + +[[bench]] +name = "leet" +harness = false -- cgit v1.2.3