diff options
author | NanoAkron <nanoakron@users.noreply.github.com> | 2016-10-29 14:16:58 +0100 |
---|---|---|
committer | NanoAkron <nanoakron@users.noreply.github.com> | 2016-10-29 14:59:06 +0100 |
commit | f71b06770bc0224e09debb0038bede6f7618aeda (patch) | |
tree | 97d7c67a381290246330d1d9c24c106a6c822fbd | |
parent | Merge pull request #1270 (diff) | |
download | monero-f71b06770bc0224e09debb0038bede6f7618aeda.tar.xz |
Changed to ..._HASHBITS everywhere for consistency
-rw-r--r-- | src/crypto/skein.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crypto/skein.c b/src/crypto/skein.c index 9c8ac288d..65e4525c3 100644 --- a/src/crypto/skein.c +++ b/src/crypto/skein.c @@ -77,7 +77,7 @@ typedef struct /* 1024-bit Skein hash context stru } Skein1024_Ctxt_t; /* Skein APIs for (incremental) "straight hashing" */ -#if SKEIN_256_NIST_MAX_HASH_BITS +#if SKEIN_256_NIST_MAX_HASHBITS static int Skein_256_Init (Skein_256_Ctxt_t *ctx, size_t hashBitLen); #endif static int Skein_512_Init (Skein_512_Ctxt_t *ctx, size_t hashBitLen); @@ -1941,7 +1941,7 @@ static HashReturn Final (hashState *state, BitSequence *hashval); /* select the context size and init the context */ static HashReturn Init(hashState *state, int hashbitlen) { -#if SKEIN_256_NIST_MAX_HASH_BITS +#if SKEIN_256_NIST_MAX_HASHBITS if (hashbitlen <= SKEIN_256_NIST_MAX_HASHBITS) { Skein_Assert(hashbitlen > 0,BAD_HASHLEN); |