Blame lib/sha1.c

Packit 8f70b4
/* sha1.c - Functions to compute SHA1 message digest of files or
Packit 8f70b4
   memory blocks according to the NIST specification FIPS-180-1.
Packit 8f70b4
Packit 8f70b4
   Copyright (C) 2000-2001, 2003-2006, 2008-2018 Free Software Foundation, Inc.
Packit 8f70b4
Packit 8f70b4
   This program is free software; you can redistribute it and/or modify it
Packit 8f70b4
   under the terms of the GNU General Public License as published by the
Packit 8f70b4
   Free Software Foundation; either version 3, or (at your option) any
Packit 8f70b4
   later version.
Packit 8f70b4
Packit 8f70b4
   This program is distributed in the hope that it will be useful,
Packit 8f70b4
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 8f70b4
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 8f70b4
   GNU General Public License for more details.
Packit 8f70b4
Packit 8f70b4
   You should have received a copy of the GNU General Public License
Packit 8f70b4
   along with this program; if not, see <https://www.gnu.org/licenses/>.  */
Packit 8f70b4
Packit 8f70b4
/* Written by Scott G. Miller
Packit 8f70b4
   Credits:
Packit 8f70b4
      Robert Klep <robert@ilse.nl>  -- Expansion function fix
Packit 8f70b4
*/
Packit 8f70b4
Packit 8f70b4
#include <config.h>
Packit 8f70b4
Packit 8f70b4
#if HAVE_OPENSSL_SHA1
Packit 8f70b4
# define GL_OPENSSL_INLINE _GL_EXTERN_INLINE
Packit 8f70b4
#endif
Packit 8f70b4
#include "sha1.h"
Packit 8f70b4
Packit 8f70b4
#include <stdalign.h>
Packit 8f70b4
#include <stdint.h>
Packit 8f70b4
#include <stdlib.h>
Packit 8f70b4
#include <string.h>
Packit 8f70b4
Packit 8f70b4
#if USE_UNLOCKED_IO
Packit 8f70b4
# include "unlocked-io.h"
Packit 8f70b4
#endif
Packit 8f70b4
Packit 8f70b4
#include <byteswap.h>
Packit 8f70b4
#ifdef WORDS_BIGENDIAN
Packit 8f70b4
# define SWAP(n) (n)
Packit 8f70b4
#else
Packit 8f70b4
# define SWAP(n) bswap_32 (n)
Packit 8f70b4
#endif
Packit 8f70b4
Packit 8f70b4
#define BLOCKSIZE 32768
Packit 8f70b4
#if BLOCKSIZE % 64 != 0
Packit 8f70b4
# error "invalid BLOCKSIZE"
Packit 8f70b4
#endif
Packit 8f70b4
Packit 8f70b4
#if ! HAVE_OPENSSL_SHA1
Packit 8f70b4
/* This array contains the bytes used to pad the buffer to the next
Packit 8f70b4
   64-byte boundary.  (RFC 1321, 3.1: Step 1)  */
Packit 8f70b4
static const unsigned char fillbuf[64] = { 0x80, 0 /* , 0, 0, ...  */ };
Packit 8f70b4
Packit 8f70b4
Packit 8f70b4
/* Take a pointer to a 160 bit block of data (five 32 bit ints) and
Packit 8f70b4
   initialize it to the start constants of the SHA1 algorithm.  This
Packit 8f70b4
   must be called before using hash in the call to sha1_hash.  */
Packit 8f70b4
void
Packit 8f70b4
sha1_init_ctx (struct sha1_ctx *ctx)
Packit 8f70b4
{
Packit 8f70b4
  ctx->A = 0x67452301;
Packit 8f70b4
  ctx->B = 0xefcdab89;
Packit 8f70b4
  ctx->C = 0x98badcfe;
Packit 8f70b4
  ctx->D = 0x10325476;
Packit 8f70b4
  ctx->E = 0xc3d2e1f0;
Packit 8f70b4
Packit 8f70b4
  ctx->total[0] = ctx->total[1] = 0;
Packit 8f70b4
  ctx->buflen = 0;
Packit 8f70b4
}
Packit 8f70b4
Packit 8f70b4
/* Copy the 4 byte value from v into the memory location pointed to by *cp,
Packit 8f70b4
   If your architecture allows unaligned access this is equivalent to
Packit 8f70b4
   * (uint32_t *) cp = v  */
Packit 8f70b4
static void
Packit 8f70b4
set_uint32 (char *cp, uint32_t v)
Packit 8f70b4
{
Packit 8f70b4
  memcpy (cp, &v, sizeof v);
Packit 8f70b4
}
Packit 8f70b4
Packit 8f70b4
/* Put result from CTX in first 20 bytes following RESBUF.  The result
Packit 8f70b4
   must be in little endian byte order.  */
Packit 8f70b4
void *
Packit 8f70b4
sha1_read_ctx (const struct sha1_ctx *ctx, void *resbuf)
Packit 8f70b4
{
Packit 8f70b4
  char *r = resbuf;
Packit 8f70b4
  set_uint32 (r + 0 * sizeof ctx->A, SWAP (ctx->A));
Packit 8f70b4
  set_uint32 (r + 1 * sizeof ctx->B, SWAP (ctx->B));
Packit 8f70b4
  set_uint32 (r + 2 * sizeof ctx->C, SWAP (ctx->C));
Packit 8f70b4
  set_uint32 (r + 3 * sizeof ctx->D, SWAP (ctx->D));
Packit 8f70b4
  set_uint32 (r + 4 * sizeof ctx->E, SWAP (ctx->E));
Packit 8f70b4
Packit 8f70b4
  return resbuf;
Packit 8f70b4
}
Packit 8f70b4
Packit 8f70b4
/* Process the remaining bytes in the internal buffer and the usual
Packit 8f70b4
   prolog according to the standard and write the result to RESBUF.  */
Packit 8f70b4
void *
Packit 8f70b4
sha1_finish_ctx (struct sha1_ctx *ctx, void *resbuf)
Packit 8f70b4
{
Packit 8f70b4
  /* Take yet unprocessed bytes into account.  */
Packit 8f70b4
  uint32_t bytes = ctx->buflen;
Packit 8f70b4
  size_t size = (bytes < 56) ? 64 / 4 : 64 * 2 / 4;
Packit 8f70b4
Packit 8f70b4
  /* Now count remaining bytes.  */
Packit 8f70b4
  ctx->total[0] += bytes;
Packit 8f70b4
  if (ctx->total[0] < bytes)
Packit 8f70b4
    ++ctx->total[1];
Packit 8f70b4
Packit 8f70b4
  /* Put the 64-bit file length in *bits* at the end of the buffer.  */
Packit 8f70b4
  ctx->buffer[size - 2] = SWAP ((ctx->total[1] << 3) | (ctx->total[0] >> 29));
Packit 8f70b4
  ctx->buffer[size - 1] = SWAP (ctx->total[0] << 3);
Packit 8f70b4
Packit 8f70b4
  memcpy (&((char *) ctx->buffer)[bytes], fillbuf, (size - 2) * 4 - bytes);
Packit 8f70b4
Packit 8f70b4
  /* Process last bytes.  */
Packit 8f70b4
  sha1_process_block (ctx->buffer, size * 4, ctx);
Packit 8f70b4
Packit 8f70b4
  return sha1_read_ctx (ctx, resbuf);
Packit 8f70b4
}
Packit 8f70b4
#endif
Packit 8f70b4
Packit 8f70b4
#ifdef GL_COMPILE_CRYPTO_STREAM
Packit 8f70b4
Packit 8f70b4
#include "af_alg.h"
Packit 8f70b4
Packit 8f70b4
/* Compute SHA1 message digest for bytes read from STREAM.  The
Packit 8f70b4
   resulting message digest number will be written into the 20 bytes
Packit 8f70b4
   beginning at RESBLOCK.  */
Packit 8f70b4
int
Packit 8f70b4
sha1_stream (FILE *stream, void *resblock)
Packit 8f70b4
{
Packit 8f70b4
  switch (afalg_stream (stream, "sha1", resblock, SHA1_DIGEST_SIZE))
Packit 8f70b4
    {
Packit 8f70b4
    case 0: return 0;
Packit 8f70b4
    case -EIO: return 1;
Packit 8f70b4
    }
Packit 8f70b4
Packit 8f70b4
  char *buffer = malloc (BLOCKSIZE + 72);
Packit 8f70b4
  if (!buffer)
Packit 8f70b4
    return 1;
Packit 8f70b4
Packit 8f70b4
  struct sha1_ctx ctx;
Packit 8f70b4
  sha1_init_ctx (&ctx;;
Packit 8f70b4
  size_t sum;
Packit 8f70b4
Packit 8f70b4
  /* Iterate over full file contents.  */
Packit 8f70b4
  while (1)
Packit 8f70b4
    {
Packit 8f70b4
      /* We read the file in blocks of BLOCKSIZE bytes.  One call of the
Packit 8f70b4
         computation function processes the whole buffer so that with the
Packit 8f70b4
         next round of the loop another block can be read.  */
Packit 8f70b4
      size_t n;
Packit 8f70b4
      sum = 0;
Packit 8f70b4
Packit 8f70b4
      /* Read block.  Take care for partial reads.  */
Packit 8f70b4
      while (1)
Packit 8f70b4
        {
Packit 8f70b4
          /* Either process a partial fread() from this loop,
Packit 8f70b4
             or the fread() in afalg_stream may have gotten EOF.
Packit 8f70b4
             We need to avoid a subsequent fread() as EOF may
Packit 8f70b4
             not be sticky.  For details of such systems, see:
Packit 8f70b4
             https://sourceware.org/bugzilla/show_bug.cgi?id=1190  */
Packit 8f70b4
          if (feof (stream))
Packit 8f70b4
            goto process_partial_block;
Packit 8f70b4
Packit 8f70b4
          n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream);
Packit 8f70b4
Packit 8f70b4
          sum += n;
Packit 8f70b4
Packit 8f70b4
          if (sum == BLOCKSIZE)
Packit 8f70b4
            break;
Packit 8f70b4
Packit 8f70b4
          if (n == 0)
Packit 8f70b4
            {
Packit 8f70b4
              /* Check for the error flag IFF N == 0, so that we don't
Packit 8f70b4
                 exit the loop after a partial read due to e.g., EAGAIN
Packit 8f70b4
                 or EWOULDBLOCK.  */
Packit 8f70b4
              if (ferror (stream))
Packit 8f70b4
                {
Packit 8f70b4
                  free (buffer);
Packit 8f70b4
                  return 1;
Packit 8f70b4
                }
Packit 8f70b4
              goto process_partial_block;
Packit 8f70b4
            }
Packit 8f70b4
        }
Packit 8f70b4
Packit 8f70b4
      /* Process buffer with BLOCKSIZE bytes.  Note that
Packit 8f70b4
                        BLOCKSIZE % 64 == 0
Packit 8f70b4
       */
Packit 8f70b4
      sha1_process_block (buffer, BLOCKSIZE, &ctx;;
Packit 8f70b4
    }
Packit 8f70b4
Packit 8f70b4
 process_partial_block:;
Packit 8f70b4
Packit 8f70b4
  /* Process any remaining bytes.  */
Packit 8f70b4
  if (sum > 0)
Packit 8f70b4
    sha1_process_bytes (buffer, sum, &ctx;;
Packit 8f70b4
Packit 8f70b4
  /* Construct result in desired memory.  */
Packit 8f70b4
  sha1_finish_ctx (&ctx, resblock);
Packit 8f70b4
  free (buffer);
Packit 8f70b4
  return 0;
Packit 8f70b4
}
Packit 8f70b4
#endif
Packit 8f70b4
Packit 8f70b4
#if ! HAVE_OPENSSL_SHA1
Packit 8f70b4
/* Compute SHA1 message digest for LEN bytes beginning at BUFFER.  The
Packit 8f70b4
   result is always in little endian byte order, so that a byte-wise
Packit 8f70b4
   output yields to the wanted ASCII representation of the message
Packit 8f70b4
   digest.  */
Packit 8f70b4
void *
Packit 8f70b4
sha1_buffer (const char *buffer, size_t len, void *resblock)
Packit 8f70b4
{
Packit 8f70b4
  struct sha1_ctx ctx;
Packit 8f70b4
Packit 8f70b4
  /* Initialize the computation context.  */
Packit 8f70b4
  sha1_init_ctx (&ctx;;
Packit 8f70b4
Packit 8f70b4
  /* Process whole buffer but last len % 64 bytes.  */
Packit 8f70b4
  sha1_process_bytes (buffer, len, &ctx;;
Packit 8f70b4
Packit 8f70b4
  /* Put result in desired memory area.  */
Packit 8f70b4
  return sha1_finish_ctx (&ctx, resblock);
Packit 8f70b4
}
Packit 8f70b4
Packit 8f70b4
void
Packit 8f70b4
sha1_process_bytes (const void *buffer, size_t len, struct sha1_ctx *ctx)
Packit 8f70b4
{
Packit 8f70b4
  /* When we already have some bits in our internal buffer concatenate
Packit 8f70b4
     both inputs first.  */
Packit 8f70b4
  if (ctx->buflen != 0)
Packit 8f70b4
    {
Packit 8f70b4
      size_t left_over = ctx->buflen;
Packit 8f70b4
      size_t add = 128 - left_over > len ? len : 128 - left_over;
Packit 8f70b4
Packit 8f70b4
      memcpy (&((char *) ctx->buffer)[left_over], buffer, add);
Packit 8f70b4
      ctx->buflen += add;
Packit 8f70b4
Packit 8f70b4
      if (ctx->buflen > 64)
Packit 8f70b4
        {
Packit 8f70b4
          sha1_process_block (ctx->buffer, ctx->buflen & ~63, ctx);
Packit 8f70b4
Packit 8f70b4
          ctx->buflen &= 63;
Packit 8f70b4
          /* The regions in the following copy operation cannot overlap,
Packit 8f70b4
             because ctx->buflen < 64 ≤ (left_over + add) & ~63.  */
Packit 8f70b4
          memcpy (ctx->buffer,
Packit 8f70b4
                  &((char *) ctx->buffer)[(left_over + add) & ~63],
Packit 8f70b4
                  ctx->buflen);
Packit 8f70b4
        }
Packit 8f70b4
Packit 8f70b4
      buffer = (const char *) buffer + add;
Packit 8f70b4
      len -= add;
Packit 8f70b4
    }
Packit 8f70b4
Packit 8f70b4
  /* Process available complete blocks.  */
Packit 8f70b4
  if (len >= 64)
Packit 8f70b4
    {
Packit 8f70b4
#if !(_STRING_ARCH_unaligned || _STRING_INLINE_unaligned)
Packit 8f70b4
# define UNALIGNED_P(p) ((uintptr_t) (p) % alignof (uint32_t) != 0)
Packit 8f70b4
      if (UNALIGNED_P (buffer))
Packit 8f70b4
        while (len > 64)
Packit 8f70b4
          {
Packit 8f70b4
            sha1_process_block (memcpy (ctx->buffer, buffer, 64), 64, ctx);
Packit 8f70b4
            buffer = (const char *) buffer + 64;
Packit 8f70b4
            len -= 64;
Packit 8f70b4
          }
Packit 8f70b4
      else
Packit 8f70b4
#endif
Packit 8f70b4
        {
Packit 8f70b4
          sha1_process_block (buffer, len & ~63, ctx);
Packit 8f70b4
          buffer = (const char *) buffer + (len & ~63);
Packit 8f70b4
          len &= 63;
Packit 8f70b4
        }
Packit 8f70b4
    }
Packit 8f70b4
Packit 8f70b4
  /* Move remaining bytes in internal buffer.  */
Packit 8f70b4
  if (len > 0)
Packit 8f70b4
    {
Packit 8f70b4
      size_t left_over = ctx->buflen;
Packit 8f70b4
Packit 8f70b4
      memcpy (&((char *) ctx->buffer)[left_over], buffer, len);
Packit 8f70b4
      left_over += len;
Packit 8f70b4
      if (left_over >= 64)
Packit 8f70b4
        {
Packit 8f70b4
          sha1_process_block (ctx->buffer, 64, ctx);
Packit 8f70b4
          left_over -= 64;
Packit 8f70b4
          /* The regions in the following copy operation cannot overlap,
Packit 8f70b4
             because left_over ≤ 64.  */
Packit 8f70b4
          memcpy (ctx->buffer, &ctx->buffer[16], left_over);
Packit 8f70b4
        }
Packit 8f70b4
      ctx->buflen = left_over;
Packit 8f70b4
    }
Packit 8f70b4
}
Packit 8f70b4
Packit 8f70b4
/* --- Code below is the primary difference between md5.c and sha1.c --- */
Packit 8f70b4
Packit 8f70b4
/* SHA1 round constants */
Packit 8f70b4
#define K1 0x5a827999
Packit 8f70b4
#define K2 0x6ed9eba1
Packit 8f70b4
#define K3 0x8f1bbcdc
Packit 8f70b4
#define K4 0xca62c1d6
Packit 8f70b4
Packit 8f70b4
/* Round functions.  Note that F2 is the same as F4.  */
Packit 8f70b4
#define F1(B,C,D) ( D ^ ( B & ( C ^ D ) ) )
Packit 8f70b4
#define F2(B,C,D) (B ^ C ^ D)
Packit 8f70b4
#define F3(B,C,D) ( ( B & C ) | ( D & ( B | C ) ) )
Packit 8f70b4
#define F4(B,C,D) (B ^ C ^ D)
Packit 8f70b4
Packit 8f70b4
/* Process LEN bytes of BUFFER, accumulating context into CTX.
Packit 8f70b4
   It is assumed that LEN % 64 == 0.
Packit 8f70b4
   Most of this code comes from GnuPG's cipher/sha1.c.  */
Packit 8f70b4
Packit 8f70b4
void
Packit 8f70b4
sha1_process_block (const void *buffer, size_t len, struct sha1_ctx *ctx)
Packit 8f70b4
{
Packit 8f70b4
  const uint32_t *words = buffer;
Packit 8f70b4
  size_t nwords = len / sizeof (uint32_t);
Packit 8f70b4
  const uint32_t *endp = words + nwords;
Packit 8f70b4
  uint32_t x[16];
Packit 8f70b4
  uint32_t a = ctx->A;
Packit 8f70b4
  uint32_t b = ctx->B;
Packit 8f70b4
  uint32_t c = ctx->C;
Packit 8f70b4
  uint32_t d = ctx->D;
Packit 8f70b4
  uint32_t e = ctx->E;
Packit 8f70b4
  uint32_t lolen = len;
Packit 8f70b4
Packit 8f70b4
  /* First increment the byte count.  RFC 1321 specifies the possible
Packit 8f70b4
     length of the file up to 2^64 bits.  Here we only compute the
Packit 8f70b4
     number of bytes.  Do a double word increment.  */
Packit 8f70b4
  ctx->total[0] += lolen;
Packit 8f70b4
  ctx->total[1] += (len >> 31 >> 1) + (ctx->total[0] < lolen);
Packit 8f70b4
Packit 8f70b4
#define rol(x, n) (((x) << (n)) | ((uint32_t) (x) >> (32 - (n))))
Packit 8f70b4
Packit 8f70b4
#define M(I) ( tm =   x[I&0x0f] ^ x[(I-14)&0x0f] \
Packit 8f70b4
                    ^ x[(I-8)&0x0f] ^ x[(I-3)&0x0f] \
Packit 8f70b4
               , (x[I&0x0f] = rol(tm, 1)) )
Packit 8f70b4
Packit 8f70b4
#define R(A,B,C,D,E,F,K,M)  do { E += rol( A, 5 )     \
Packit 8f70b4
                                      + F( B, C, D )  \
Packit 8f70b4
                                      + K             \
Packit 8f70b4
                                      + M;            \
Packit 8f70b4
                                 B = rol( B, 30 );    \
Packit 8f70b4
                               } while(0)
Packit 8f70b4
Packit 8f70b4
  while (words < endp)
Packit 8f70b4
    {
Packit 8f70b4
      uint32_t tm;
Packit 8f70b4
      int t;
Packit 8f70b4
      for (t = 0; t < 16; t++)
Packit 8f70b4
        {
Packit 8f70b4
          x[t] = SWAP (*words);
Packit 8f70b4
          words++;
Packit 8f70b4
        }
Packit 8f70b4
Packit 8f70b4
      R( a, b, c, d, e, F1, K1, x[ 0] );
Packit 8f70b4
      R( e, a, b, c, d, F1, K1, x[ 1] );
Packit 8f70b4
      R( d, e, a, b, c, F1, K1, x[ 2] );
Packit 8f70b4
      R( c, d, e, a, b, F1, K1, x[ 3] );
Packit 8f70b4
      R( b, c, d, e, a, F1, K1, x[ 4] );
Packit 8f70b4
      R( a, b, c, d, e, F1, K1, x[ 5] );
Packit 8f70b4
      R( e, a, b, c, d, F1, K1, x[ 6] );
Packit 8f70b4
      R( d, e, a, b, c, F1, K1, x[ 7] );
Packit 8f70b4
      R( c, d, e, a, b, F1, K1, x[ 8] );
Packit 8f70b4
      R( b, c, d, e, a, F1, K1, x[ 9] );
Packit 8f70b4
      R( a, b, c, d, e, F1, K1, x[10] );
Packit 8f70b4
      R( e, a, b, c, d, F1, K1, x[11] );
Packit 8f70b4
      R( d, e, a, b, c, F1, K1, x[12] );
Packit 8f70b4
      R( c, d, e, a, b, F1, K1, x[13] );
Packit 8f70b4
      R( b, c, d, e, a, F1, K1, x[14] );
Packit 8f70b4
      R( a, b, c, d, e, F1, K1, x[15] );
Packit 8f70b4
      R( e, a, b, c, d, F1, K1, M(16) );
Packit 8f70b4
      R( d, e, a, b, c, F1, K1, M(17) );
Packit 8f70b4
      R( c, d, e, a, b, F1, K1, M(18) );
Packit 8f70b4
      R( b, c, d, e, a, F1, K1, M(19) );
Packit 8f70b4
      R( a, b, c, d, e, F2, K2, M(20) );
Packit 8f70b4
      R( e, a, b, c, d, F2, K2, M(21) );
Packit 8f70b4
      R( d, e, a, b, c, F2, K2, M(22) );
Packit 8f70b4
      R( c, d, e, a, b, F2, K2, M(23) );
Packit 8f70b4
      R( b, c, d, e, a, F2, K2, M(24) );
Packit 8f70b4
      R( a, b, c, d, e, F2, K2, M(25) );
Packit 8f70b4
      R( e, a, b, c, d, F2, K2, M(26) );
Packit 8f70b4
      R( d, e, a, b, c, F2, K2, M(27) );
Packit 8f70b4
      R( c, d, e, a, b, F2, K2, M(28) );
Packit 8f70b4
      R( b, c, d, e, a, F2, K2, M(29) );
Packit 8f70b4
      R( a, b, c, d, e, F2, K2, M(30) );
Packit 8f70b4
      R( e, a, b, c, d, F2, K2, M(31) );
Packit 8f70b4
      R( d, e, a, b, c, F2, K2, M(32) );
Packit 8f70b4
      R( c, d, e, a, b, F2, K2, M(33) );
Packit 8f70b4
      R( b, c, d, e, a, F2, K2, M(34) );
Packit 8f70b4
      R( a, b, c, d, e, F2, K2, M(35) );
Packit 8f70b4
      R( e, a, b, c, d, F2, K2, M(36) );
Packit 8f70b4
      R( d, e, a, b, c, F2, K2, M(37) );
Packit 8f70b4
      R( c, d, e, a, b, F2, K2, M(38) );
Packit 8f70b4
      R( b, c, d, e, a, F2, K2, M(39) );
Packit 8f70b4
      R( a, b, c, d, e, F3, K3, M(40) );
Packit 8f70b4
      R( e, a, b, c, d, F3, K3, M(41) );
Packit 8f70b4
      R( d, e, a, b, c, F3, K3, M(42) );
Packit 8f70b4
      R( c, d, e, a, b, F3, K3, M(43) );
Packit 8f70b4
      R( b, c, d, e, a, F3, K3, M(44) );
Packit 8f70b4
      R( a, b, c, d, e, F3, K3, M(45) );
Packit 8f70b4
      R( e, a, b, c, d, F3, K3, M(46) );
Packit 8f70b4
      R( d, e, a, b, c, F3, K3, M(47) );
Packit 8f70b4
      R( c, d, e, a, b, F3, K3, M(48) );
Packit 8f70b4
      R( b, c, d, e, a, F3, K3, M(49) );
Packit 8f70b4
      R( a, b, c, d, e, F3, K3, M(50) );
Packit 8f70b4
      R( e, a, b, c, d, F3, K3, M(51) );
Packit 8f70b4
      R( d, e, a, b, c, F3, K3, M(52) );
Packit 8f70b4
      R( c, d, e, a, b, F3, K3, M(53) );
Packit 8f70b4
      R( b, c, d, e, a, F3, K3, M(54) );
Packit 8f70b4
      R( a, b, c, d, e, F3, K3, M(55) );
Packit 8f70b4
      R( e, a, b, c, d, F3, K3, M(56) );
Packit 8f70b4
      R( d, e, a, b, c, F3, K3, M(57) );
Packit 8f70b4
      R( c, d, e, a, b, F3, K3, M(58) );
Packit 8f70b4
      R( b, c, d, e, a, F3, K3, M(59) );
Packit 8f70b4
      R( a, b, c, d, e, F4, K4, M(60) );
Packit 8f70b4
      R( e, a, b, c, d, F4, K4, M(61) );
Packit 8f70b4
      R( d, e, a, b, c, F4, K4, M(62) );
Packit 8f70b4
      R( c, d, e, a, b, F4, K4, M(63) );
Packit 8f70b4
      R( b, c, d, e, a, F4, K4, M(64) );
Packit 8f70b4
      R( a, b, c, d, e, F4, K4, M(65) );
Packit 8f70b4
      R( e, a, b, c, d, F4, K4, M(66) );
Packit 8f70b4
      R( d, e, a, b, c, F4, K4, M(67) );
Packit 8f70b4
      R( c, d, e, a, b, F4, K4, M(68) );
Packit 8f70b4
      R( b, c, d, e, a, F4, K4, M(69) );
Packit 8f70b4
      R( a, b, c, d, e, F4, K4, M(70) );
Packit 8f70b4
      R( e, a, b, c, d, F4, K4, M(71) );
Packit 8f70b4
      R( d, e, a, b, c, F4, K4, M(72) );
Packit 8f70b4
      R( c, d, e, a, b, F4, K4, M(73) );
Packit 8f70b4
      R( b, c, d, e, a, F4, K4, M(74) );
Packit 8f70b4
      R( a, b, c, d, e, F4, K4, M(75) );
Packit 8f70b4
      R( e, a, b, c, d, F4, K4, M(76) );
Packit 8f70b4
      R( d, e, a, b, c, F4, K4, M(77) );
Packit 8f70b4
      R( c, d, e, a, b, F4, K4, M(78) );
Packit 8f70b4
      R( b, c, d, e, a, F4, K4, M(79) );
Packit 8f70b4
Packit 8f70b4
      a = ctx->A += a;
Packit 8f70b4
      b = ctx->B += b;
Packit 8f70b4
      c = ctx->C += c;
Packit 8f70b4
      d = ctx->D += d;
Packit 8f70b4
      e = ctx->E += e;
Packit 8f70b4
    }
Packit 8f70b4
}
Packit 8f70b4
#endif
Packit 8f70b4
Packit 8f70b4
/*
Packit 8f70b4
 * Hey Emacs!
Packit 8f70b4
 * Local Variables:
Packit 8f70b4
 * coding: utf-8
Packit 8f70b4
 * End:
Packit 8f70b4
 */