diff options
author | Riccardo Spagni <ric@spagni.net> | 2015-01-28 11:32:52 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2015-01-28 11:32:52 +0200 |
commit | 3ece1584f081fb995217b3dfc718b5e099f10220 (patch) | |
tree | 88c1d03726e941eeb13db0c002a7b435c4a76c37 | |
parent | Merge branch 'master' of https://github.com/fluffypony/bitmonero (diff) | |
download | monero-3ece1584f081fb995217b3dfc718b5e099f10220.tar.xz |
make fallback compatible with newer slow-hash
-rw-r--r-- | src/crypto/slow-hash.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/crypto/slow-hash.c b/src/crypto/slow-hash.c index fda854ea5..6b410b01a 100644 --- a/src/crypto/slow-hash.c +++ b/src/crypto/slow-hash.c @@ -627,6 +627,18 @@ void cn_slow_hash(const void *data, size_t length, char *hash) #else // Portable implementation as a fallback +void slow_hash_allocate_state(void) +{ + // Do nothing, this is just to maintain compatibility with the upgraded slow-hash.c + return; +} + +void slow_hash_free_state(void) +{ + // As above + return; +} + static void (*const extra_hashes[4])(const void *, size_t, char *) = { hash_extra_blake, hash_extra_groestl, hash_extra_jh, hash_extra_skein }; |