We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6a029e commit 1726b75Copy full SHA for 1726b75
2 files changed
ascon-hash256/benches/mod.rs
@@ -0,0 +1,13 @@
1
+#![feature(test)]
2
+extern crate test;
3
+
4
+use digest::bench_update;
5
+use test::Bencher;
6
7
+bench_update!(
8
+ ascon_hash256::AsconHash256::default();
9
+ ascon_hash256_10 10;
10
+ ascon_hash256_100 100;
11
+ ascon_hash256_1000 1000;
12
+ ascon_hash256_10000 10000;
13
+);
ascon-xof128/benches/mod.rs
+ ascon_xof128::AsconXof128::default();
+ ascon_xof128_10 10;
+ ascon_xof128_100 100;
+ ascon_xof128_1000 1000;
+ ascon_xof128_10000 10000;
0 commit comments