aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2018-03-10 08:10:12 -0500
committerPaul Selkirk <paul@psgd.org>2018-03-10 08:10:12 -0500
commit0ff06f408c6e6f48bd3c844bddff10fe1b180290 (patch)
tree9625c85eb63f1874275a9e62a3e75b24bd7fa34a
parentb26b375956a0f5b472b9b7f180ee78b0c64fc256 (diff)
Fix coef4, which was swapping digits
-rw-r--r--hashsig.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/hashsig.c b/hashsig.c
index 13f20c6..e32358d 100644
--- a/hashsig.c
+++ b/hashsig.c
@@ -284,10 +284,7 @@ static uint8_t coef2(const uint8_t * const S, const size_t i)
/* w = 4 */
static uint8_t coef4(const uint8_t * const S, const size_t i)
{
- uint8_t byte = S[i/2];
- if (i % 2)
- byte >>= 4;
- return byte & 0x0f;
+ return (S[i/2] >> (4 - (4 * (i % 2)))) & 0x0f;
}
/* w = 8 */