diff options
author | Jim Posen <jim.posen@gmail.com> | 2018-08-24 14:48:23 -0700 |
---|---|---|
committer | Jim Posen <jim.posen@gmail.com> | 2018-11-05 09:25:15 -0800 |
commit | 4fb789e9b2ffdf48fd50293b3982b3fce4d5fbdf (patch) | |
tree | 24f14fbfe6b2079e3dbc0952d72477431f679535 /src/bench/crypto_hash.cpp | |
parent | 6b8d0a2164b30eab76e7bccb1ffb056a10fba406 (diff) |
Extract CSipHasher to it's own file in crypto/ directory.
This is a move-only commit with the exception of changes to includes.
Diffstat (limited to 'src/bench/crypto_hash.cpp')
-rw-r--r-- | src/bench/crypto_hash.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bench/crypto_hash.cpp b/src/bench/crypto_hash.cpp index d7499a3767..dc0b054420 100644 --- a/src/bench/crypto_hash.cpp +++ b/src/bench/crypto_hash.cpp @@ -14,6 +14,7 @@ #include <crypto/sha1.h> #include <crypto/sha256.h> #include <crypto/sha512.h> +#include <crypto/siphash.h> /* Number of bytes to hash per iteration */ static const uint64_t BUFFER_SIZE = 1000*1000; |