Commit 700cf1c2 authored by Pavel Tvrdík's avatar Pavel Tvrdík
Browse files

SHA256: Remove 32-bit move at the 32-bit number

parent c40185a1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -298,7 +298,7 @@ sha256_final(struct sha256_context *ctx)
  if (sizeof t == sizeof ctx->nblocks)
    th = ctx->nblocks_high;
  else
    th = ctx->nblocks >> 32;
    th = 0;

  /* multiply by 64 to make a byte count */
  lsb = t << 6;