tests/hash: correctly reference crypto HASH_SIZE for less confusion

This commit is contained in:
AnythingTechPro 2018-03-14 11:10:54 -04:00 committed by GitHub
parent a69c713f8e
commit 843f65cbda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ extern "C" {
if ((length & 31) != 0) {
throw ios_base::failure("Invalid input length for tree_hash");
}
tree_hash((const char (*)[32]) data, length >> 5, hash);
tree_hash((const char (*)[crypto::HASH_SIZE]) data, length >> 5, hash);
}
static void cn_slow_hash_0(const void *data, size_t length, char *hash) {
return cn_slow_hash(data, length, hash, 0/*variant*/, 0/*prehashed*/);