-
Notifications
You must be signed in to change notification settings - Fork 253
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
1 parent
05be010
commit ebcf8f2
Showing
6 changed files
with
99 additions
and
32 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ members = [ | |
"md2", | ||
"md4", | ||
"md5", | ||
"multimixer-128", | ||
"ripemd", | ||
"sha1", | ||
"sha1-checked", | ||
|
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
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,15 @@ | ||
#![feature(test)] | ||
extern crate test; | ||
|
||
use digest::bench_update; | ||
use digest::crypto_common::KeyInit; | ||
use multimixer_128::Multimixer; | ||
use test::Bencher; | ||
//Multimixer::from_core(MultimixerCore::dummy_bencher()); | ||
bench_update!( | ||
Multimixer::new(&[0u8;32].into()); | ||
multimixer_10 10; | ||
multimixer_100 100; | ||
multimixer_1000 1000; | ||
multimixer_10000 10000; | ||
); |
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
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