summaryrefslogtreecommitdiff
path: root/bench1.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2021-04-16 03:23:15 -0400
committerGitHub <noreply@github.com>2021-04-16 03:23:15 -0400
commit11eee26d76f4c6e8c7f0639187eb68e66bd7d8d4 (patch)
tree41631fe62b30885dd3bbe6b0672adec3aeefcffc /bench1.cpp
parentbb3776e0ee6eef63c67428659e0b287cc207da80 (diff)
downloadcryptopp-git-11eee26d76f4c6e8c7f0639187eb68e66bd7d8d4.tar.gz
Add LSH-256 and LSH-512 hash functions (GH #1025, PR #1026)
Add South Korea's LSH-256 and LSH-512 families of hash functions.
Diffstat (limited to 'bench1.cpp')
-rw-r--r--bench1.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/bench1.cpp b/bench1.cpp
index 5a7d66a1..2daf6afc 100644
--- a/bench1.cpp
+++ b/bench1.cpp
@@ -509,6 +509,8 @@ void BenchmarkUnkeyedAlgorithms(double t, double hertz)
BenchMarkByNameKeyLess<HashTransformation>("SM3");
BenchMarkByNameKeyLess<HashTransformation>("BLAKE2s");
BenchMarkByNameKeyLess<HashTransformation>("BLAKE2b");
+ BenchMarkByNameKeyLess<HashTransformation>("LSH-256");
+ BenchMarkByNameKeyLess<HashTransformation>("LSH-512");
}
std::cout << "\n</TABLE>" << std::endl;