Home | History | Annotate | Line # | Download | only in isc
sha1.c revision 1.1.1.1
      1  1.1  christos /*	$NetBSD: sha1.c,v 1.1.1.1 2024/08/18 20:37:37 christos Exp $	*/
      2  1.1  christos 
      3  1.1  christos /*
      4  1.1  christos  * Copyright (C) 2004, 2005, 2007, 2009, 2011, 2012  Internet Systems Consortium, Inc. ("ISC")
      5  1.1  christos  * Copyright (C) 2000, 2001, 2003  Internet Software Consortium.
      6  1.1  christos  *
      7  1.1  christos  * Permission to use, copy, modify, and/or distribute this software for any
      8  1.1  christos  * purpose with or without fee is hereby granted, provided that the above
      9  1.1  christos  * copyright notice and this permission notice appear in all copies.
     10  1.1  christos  *
     11  1.1  christos  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
     12  1.1  christos  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
     13  1.1  christos  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
     14  1.1  christos  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
     15  1.1  christos  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
     16  1.1  christos  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
     17  1.1  christos  * PERFORMANCE OF THIS SOFTWARE.
     18  1.1  christos  */
     19  1.1  christos 
     20  1.1  christos /* Id */
     21  1.1  christos 
     22  1.1  christos /*	NetBSD: sha1.c,v 1.5 2000/01/22 22:19:14 mycroft Exp 	*/
     23  1.1  christos /*	$OpenBSD: sha1.c,v 1.9 1997/07/23 21:12:32 kstailey Exp $	*/
     24  1.1  christos 
     25  1.1  christos /*! \file
     26  1.1  christos  * SHA-1 in C
     27  1.1  christos  * \author By Steve Reid <steve (at) edmweb.com>
     28  1.1  christos  * 100% Public Domain
     29  1.1  christos  * \verbatim
     30  1.1  christos  * Test Vectors (from FIPS PUB 180-1)
     31  1.1  christos  * "abc"
     32  1.1  christos  *   A9993E36 4706816A BA3E2571 7850C26C 9CD0D89D
     33  1.1  christos  * "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"
     34  1.1  christos  *   84983E44 1C3BD26E BAAE4AA1 F95129E5 E54670F1
     35  1.1  christos  * A million repetitions of "a"
     36  1.1  christos  *   34AA973C D4C4DAA4 F61EEB2B DBAD2731 6534016F
     37  1.1  christos  * \endverbatim
     38  1.1  christos  */
     39  1.1  christos 
     40  1.1  christos #include "config.h"
     41  1.1  christos 
     42  1.1  christos #include <isc/assertions.h>
     43  1.1  christos #include <isc/platform.h>
     44  1.1  christos #include <isc/sha1.h>
     45  1.1  christos #include <isc/string.h>
     46  1.1  christos #include <isc/types.h>
     47  1.1  christos #include <isc/util.h>
     48  1.1  christos 
     49  1.1  christos #ifdef ISC_PLATFORM_OPENSSLHASH
     50  1.1  christos 
     51  1.1  christos void
     52  1.1  christos isc_sha1_init(isc_sha1_t *context)
     53  1.1  christos {
     54  1.1  christos 	INSIST(context != NULL);
     55  1.1  christos 
     56  1.1  christos 	EVP_DigestInit(context, EVP_sha1());
     57  1.1  christos }
     58  1.1  christos 
     59  1.1  christos void
     60  1.1  christos isc_sha1_invalidate(isc_sha1_t *context) {
     61  1.1  christos 	EVP_MD_CTX_cleanup(context);
     62  1.1  christos }
     63  1.1  christos 
     64  1.1  christos void
     65  1.1  christos isc_sha1_update(isc_sha1_t *context, const unsigned char *data,
     66  1.1  christos 		unsigned int len)
     67  1.1  christos {
     68  1.1  christos 	INSIST(context != 0);
     69  1.1  christos 	INSIST(data != 0);
     70  1.1  christos 
     71  1.1  christos 	EVP_DigestUpdate(context, (const void *) data, (size_t) len);
     72  1.1  christos }
     73  1.1  christos 
     74  1.1  christos void
     75  1.1  christos isc_sha1_final(isc_sha1_t *context, unsigned char *digest) {
     76  1.1  christos 	INSIST(digest != 0);
     77  1.1  christos 	INSIST(context != 0);
     78  1.1  christos 
     79  1.1  christos 	EVP_DigestFinal(context, digest, NULL);
     80  1.1  christos }
     81  1.1  christos 
     82  1.1  christos #else
     83  1.1  christos 
     84  1.1  christos #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))
     85  1.1  christos 
     86  1.1  christos /*@{*/
     87  1.1  christos /*!
     88  1.1  christos  * blk0() and blk() perform the initial expand.
     89  1.1  christos  * I got the idea of expanding during the round function from SSLeay
     90  1.1  christos  */
     91  1.1  christos #if !defined(WORDS_BIGENDIAN)
     92  1.1  christos # define blk0(i) \
     93  1.1  christos 	(block->l[i] = (rol(block->l[i], 24) & 0xFF00FF00) \
     94  1.1  christos 	 | (rol(block->l[i], 8) & 0x00FF00FF))
     95  1.1  christos #else
     96  1.1  christos # define blk0(i) block->l[i]
     97  1.1  christos #endif
     98  1.1  christos #define blk(i) \
     99  1.1  christos 	(block->l[i & 15] = rol(block->l[(i + 13) & 15] \
    100  1.1  christos 				^ block->l[(i + 8) & 15] \
    101  1.1  christos 				^ block->l[(i + 2) & 15] \
    102  1.1  christos 				^ block->l[i & 15], 1))
    103  1.1  christos 
    104  1.1  christos /*@}*/
    105  1.1  christos /*@{*/
    106  1.1  christos /*!
    107  1.1  christos  * (R0+R1), R2, R3, R4 are the different operations (rounds) used in SHA1
    108  1.1  christos  */
    109  1.1  christos #define R0(v,w,x,y,z,i) \
    110  1.1  christos 	z += ((w & (x ^ y)) ^ y) + blk0(i) + 0x5A827999 + rol(v, 5); \
    111  1.1  christos 	w = rol(w, 30);
    112  1.1  christos #define R1(v,w,x,y,z,i) \
    113  1.1  christos 	z += ((w & (x ^ y)) ^ y) + blk(i) + 0x5A827999 + rol(v, 5); \
    114  1.1  christos 	w = rol(w, 30);
    115  1.1  christos #define R2(v,w,x,y,z,i) \
    116  1.1  christos 	z += (w ^ x ^ y) + blk(i) + 0x6ED9EBA1 + rol(v, 5); \
    117  1.1  christos 	w = rol(w, 30);
    118  1.1  christos #define R3(v,w,x,y,z,i) \
    119  1.1  christos 	z += (((w | x) & y) | (w & x)) + blk(i) + 0x8F1BBCDC + rol(v, 5); \
    120  1.1  christos 	w = rol(w, 30);
    121  1.1  christos #define R4(v,w,x,y,z,i) \
    122  1.1  christos 	z += (w ^ x ^ y) + blk(i) + 0xCA62C1D6 + rol(v, 5); \
    123  1.1  christos 	w = rol(w, 30);
    124  1.1  christos 
    125  1.1  christos /*@}*/
    126  1.1  christos 
    127  1.1  christos typedef union {
    128  1.1  christos 	unsigned char c[64];
    129  1.1  christos 	unsigned int l[16];
    130  1.1  christos } CHAR64LONG16;
    131  1.1  christos 
    132  1.1  christos #ifdef __sparc_v9__
    133  1.1  christos static void do_R01(isc_uint32_t *a, isc_uint32_t *b, isc_uint32_t *c,
    134  1.1  christos 		   isc_uint32_t *d, isc_uint32_t *e, CHAR64LONG16 *);
    135  1.1  christos static void do_R2(isc_uint32_t *a, isc_uint32_t *b, isc_uint32_t *c,
    136  1.1  christos 		  isc_uint32_t *d, isc_uint32_t *e, CHAR64LONG16 *);
    137  1.1  christos static void do_R3(isc_uint32_t *a, isc_uint32_t *b, isc_uint32_t *c,
    138  1.1  christos 		  isc_uint32_t *d, isc_uint32_t *e, CHAR64LONG16 *);
    139  1.1  christos static void do_R4(isc_uint32_t *a, isc_uint32_t *b, isc_uint32_t *c,
    140  1.1  christos 		  isc_uint32_t *d, isc_uint32_t *e, CHAR64LONG16 *);
    141  1.1  christos 
    142  1.1  christos #define nR0(v,w,x,y,z,i) R0(*v,*w,*x,*y,*z,i)
    143  1.1  christos #define nR1(v,w,x,y,z,i) R1(*v,*w,*x,*y,*z,i)
    144  1.1  christos #define nR2(v,w,x,y,z,i) R2(*v,*w,*x,*y,*z,i)
    145  1.1  christos #define nR3(v,w,x,y,z,i) R3(*v,*w,*x,*y,*z,i)
    146  1.1  christos #define nR4(v,w,x,y,z,i) R4(*v,*w,*x,*y,*z,i)
    147  1.1  christos 
    148  1.1  christos static void
    149  1.1  christos do_R01(isc_uint32_t *a, isc_uint32_t *b, isc_uint32_t *c, isc_uint32_t *d,
    150  1.1  christos        isc_uint32_t *e, CHAR64LONG16 *block)
    151  1.1  christos {
    152  1.1  christos 	nR0(a,b,c,d,e, 0); nR0(e,a,b,c,d, 1); nR0(d,e,a,b,c, 2);
    153  1.1  christos 	nR0(c,d,e,a,b, 3); nR0(b,c,d,e,a, 4); nR0(a,b,c,d,e, 5);
    154  1.1  christos 	nR0(e,a,b,c,d, 6); nR0(d,e,a,b,c, 7); nR0(c,d,e,a,b, 8);
    155  1.1  christos 	nR0(b,c,d,e,a, 9); nR0(a,b,c,d,e,10); nR0(e,a,b,c,d,11);
    156  1.1  christos 	nR0(d,e,a,b,c,12); nR0(c,d,e,a,b,13); nR0(b,c,d,e,a,14);
    157  1.1  christos 	nR0(a,b,c,d,e,15); nR1(e,a,b,c,d,16); nR1(d,e,a,b,c,17);
    158  1.1  christos 	nR1(c,d,e,a,b,18); nR1(b,c,d,e,a,19);
    159  1.1  christos }
    160  1.1  christos 
    161  1.1  christos static void
    162  1.1  christos do_R2(isc_uint32_t *a, isc_uint32_t *b, isc_uint32_t *c, isc_uint32_t *d,
    163  1.1  christos       isc_uint32_t *e, CHAR64LONG16 *block)
    164  1.1  christos {
    165  1.1  christos 	nR2(a,b,c,d,e,20); nR2(e,a,b,c,d,21); nR2(d,e,a,b,c,22);
    166  1.1  christos 	nR2(c,d,e,a,b,23); nR2(b,c,d,e,a,24); nR2(a,b,c,d,e,25);
    167  1.1  christos 	nR2(e,a,b,c,d,26); nR2(d,e,a,b,c,27); nR2(c,d,e,a,b,28);
    168  1.1  christos 	nR2(b,c,d,e,a,29); nR2(a,b,c,d,e,30); nR2(e,a,b,c,d,31);
    169  1.1  christos 	nR2(d,e,a,b,c,32); nR2(c,d,e,a,b,33); nR2(b,c,d,e,a,34);
    170  1.1  christos 	nR2(a,b,c,d,e,35); nR2(e,a,b,c,d,36); nR2(d,e,a,b,c,37);
    171  1.1  christos 	nR2(c,d,e,a,b,38); nR2(b,c,d,e,a,39);
    172  1.1  christos }
    173  1.1  christos 
    174  1.1  christos static void
    175  1.1  christos do_R3(isc_uint32_t *a, isc_uint32_t *b, isc_uint32_t *c, isc_uint32_t *d,
    176  1.1  christos       isc_uint32_t *e, CHAR64LONG16 *block)
    177  1.1  christos {
    178  1.1  christos 	nR3(a,b,c,d,e,40); nR3(e,a,b,c,d,41); nR3(d,e,a,b,c,42);
    179  1.1  christos 	nR3(c,d,e,a,b,43); nR3(b,c,d,e,a,44); nR3(a,b,c,d,e,45);
    180  1.1  christos 	nR3(e,a,b,c,d,46); nR3(d,e,a,b,c,47); nR3(c,d,e,a,b,48);
    181  1.1  christos 	nR3(b,c,d,e,a,49); nR3(a,b,c,d,e,50); nR3(e,a,b,c,d,51);
    182  1.1  christos 	nR3(d,e,a,b,c,52); nR3(c,d,e,a,b,53); nR3(b,c,d,e,a,54);
    183  1.1  christos 	nR3(a,b,c,d,e,55); nR3(e,a,b,c,d,56); nR3(d,e,a,b,c,57);
    184  1.1  christos 	nR3(c,d,e,a,b,58); nR3(b,c,d,e,a,59);
    185  1.1  christos }
    186  1.1  christos 
    187  1.1  christos static void
    188  1.1  christos do_R4(isc_uint32_t *a, isc_uint32_t *b, isc_uint32_t *c, isc_uint32_t *d,
    189  1.1  christos       isc_uint32_t *e, CHAR64LONG16 *block)
    190  1.1  christos {
    191  1.1  christos 	nR4(a,b,c,d,e,60); nR4(e,a,b,c,d,61); nR4(d,e,a,b,c,62);
    192  1.1  christos 	nR4(c,d,e,a,b,63); nR4(b,c,d,e,a,64); nR4(a,b,c,d,e,65);
    193  1.1  christos 	nR4(e,a,b,c,d,66); nR4(d,e,a,b,c,67); nR4(c,d,e,a,b,68);
    194  1.1  christos 	nR4(b,c,d,e,a,69); nR4(a,b,c,d,e,70); nR4(e,a,b,c,d,71);
    195  1.1  christos 	nR4(d,e,a,b,c,72); nR4(c,d,e,a,b,73); nR4(b,c,d,e,a,74);
    196  1.1  christos 	nR4(a,b,c,d,e,75); nR4(e,a,b,c,d,76); nR4(d,e,a,b,c,77);
    197  1.1  christos 	nR4(c,d,e,a,b,78); nR4(b,c,d,e,a,79);
    198  1.1  christos }
    199  1.1  christos #endif
    200  1.1  christos 
    201  1.1  christos /*!
    202  1.1  christos  * Hash a single 512-bit block. This is the core of the algorithm.
    203  1.1  christos  */
    204  1.1  christos static void
    205  1.1  christos transform(isc_uint32_t state[5], const unsigned char buffer[64]) {
    206  1.1  christos 	isc_uint32_t a, b, c, d, e;
    207  1.1  christos 	CHAR64LONG16 *block;
    208  1.1  christos 	CHAR64LONG16 workspace;
    209  1.1  christos 
    210  1.1  christos 	INSIST(buffer != NULL);
    211  1.1  christos 	INSIST(state != NULL);
    212  1.1  christos 
    213  1.1  christos 	block = &workspace;
    214  1.1  christos 	(void)memcpy(block, buffer, 64);
    215  1.1  christos 
    216  1.1  christos 	/* Copy context->state[] to working vars */
    217  1.1  christos 	a = state[0];
    218  1.1  christos 	b = state[1];
    219  1.1  christos 	c = state[2];
    220  1.1  christos 	d = state[3];
    221  1.1  christos 	e = state[4];
    222  1.1  christos 
    223  1.1  christos #ifdef __sparc_v9__
    224  1.1  christos 	do_R01(&a, &b, &c, &d, &e, block);
    225  1.1  christos 	do_R2(&a, &b, &c, &d, &e, block);
    226  1.1  christos 	do_R3(&a, &b, &c, &d, &e, block);
    227  1.1  christos 	do_R4(&a, &b, &c, &d, &e, block);
    228  1.1  christos #else
    229  1.1  christos 	/* 4 rounds of 20 operations each. Loop unrolled. */
    230  1.1  christos 	R0(a,b,c,d,e, 0); R0(e,a,b,c,d, 1); R0(d,e,a,b,c, 2); R0(c,d,e,a,b, 3);
    231  1.1  christos 	R0(b,c,d,e,a, 4); R0(a,b,c,d,e, 5); R0(e,a,b,c,d, 6); R0(d,e,a,b,c, 7);
    232  1.1  christos 	R0(c,d,e,a,b, 8); R0(b,c,d,e,a, 9); R0(a,b,c,d,e,10); R0(e,a,b,c,d,11);
    233  1.1  christos 	R0(d,e,a,b,c,12); R0(c,d,e,a,b,13); R0(b,c,d,e,a,14); R0(a,b,c,d,e,15);
    234  1.1  christos 	R1(e,a,b,c,d,16); R1(d,e,a,b,c,17); R1(c,d,e,a,b,18); R1(b,c,d,e,a,19);
    235  1.1  christos 	R2(a,b,c,d,e,20); R2(e,a,b,c,d,21); R2(d,e,a,b,c,22); R2(c,d,e,a,b,23);
    236  1.1  christos 	R2(b,c,d,e,a,24); R2(a,b,c,d,e,25); R2(e,a,b,c,d,26); R2(d,e,a,b,c,27);
    237  1.1  christos 	R2(c,d,e,a,b,28); R2(b,c,d,e,a,29); R2(a,b,c,d,e,30); R2(e,a,b,c,d,31);
    238  1.1  christos 	R2(d,e,a,b,c,32); R2(c,d,e,a,b,33); R2(b,c,d,e,a,34); R2(a,b,c,d,e,35);
    239  1.1  christos 	R2(e,a,b,c,d,36); R2(d,e,a,b,c,37); R2(c,d,e,a,b,38); R2(b,c,d,e,a,39);
    240  1.1  christos 	R3(a,b,c,d,e,40); R3(e,a,b,c,d,41); R3(d,e,a,b,c,42); R3(c,d,e,a,b,43);
    241  1.1  christos 	R3(b,c,d,e,a,44); R3(a,b,c,d,e,45); R3(e,a,b,c,d,46); R3(d,e,a,b,c,47);
    242  1.1  christos 	R3(c,d,e,a,b,48); R3(b,c,d,e,a,49); R3(a,b,c,d,e,50); R3(e,a,b,c,d,51);
    243  1.1  christos 	R3(d,e,a,b,c,52); R3(c,d,e,a,b,53); R3(b,c,d,e,a,54); R3(a,b,c,d,e,55);
    244  1.1  christos 	R3(e,a,b,c,d,56); R3(d,e,a,b,c,57); R3(c,d,e,a,b,58); R3(b,c,d,e,a,59);
    245  1.1  christos 	R4(a,b,c,d,e,60); R4(e,a,b,c,d,61); R4(d,e,a,b,c,62); R4(c,d,e,a,b,63);
    246  1.1  christos 	R4(b,c,d,e,a,64); R4(a,b,c,d,e,65); R4(e,a,b,c,d,66); R4(d,e,a,b,c,67);
    247  1.1  christos 	R4(c,d,e,a,b,68); R4(b,c,d,e,a,69); R4(a,b,c,d,e,70); R4(e,a,b,c,d,71);
    248  1.1  christos 	R4(d,e,a,b,c,72); R4(c,d,e,a,b,73); R4(b,c,d,e,a,74); R4(a,b,c,d,e,75);
    249  1.1  christos 	R4(e,a,b,c,d,76); R4(d,e,a,b,c,77); R4(c,d,e,a,b,78); R4(b,c,d,e,a,79);
    250  1.1  christos #endif
    251  1.1  christos 
    252  1.1  christos 	/* Add the working vars back into context.state[] */
    253  1.1  christos 	state[0] += a;
    254  1.1  christos 	state[1] += b;
    255  1.1  christos 	state[2] += c;
    256  1.1  christos 	state[3] += d;
    257  1.1  christos 	state[4] += e;
    258  1.1  christos 
    259  1.1  christos 	/* Wipe variables */
    260  1.1  christos 	a = b = c = d = e = 0;
    261  1.1  christos 	/* Avoid compiler warnings */
    262  1.1  christos 	POST(a); POST(b); POST(c); POST(d); POST(e);
    263  1.1  christos }
    264  1.1  christos 
    265  1.1  christos 
    266  1.1  christos /*!
    267  1.1  christos  * isc_sha1_init - Initialize new context
    268  1.1  christos  */
    269  1.1  christos void
    270  1.1  christos isc_sha1_init(isc_sha1_t *context)
    271  1.1  christos {
    272  1.1  christos 	INSIST(context != NULL);
    273  1.1  christos 
    274  1.1  christos 	/* SHA1 initialization constants */
    275  1.1  christos 	context->state[0] = 0x67452301;
    276  1.1  christos 	context->state[1] = 0xEFCDAB89;
    277  1.1  christos 	context->state[2] = 0x98BADCFE;
    278  1.1  christos 	context->state[3] = 0x10325476;
    279  1.1  christos 	context->state[4] = 0xC3D2E1F0;
    280  1.1  christos 	context->count[0] = 0;
    281  1.1  christos 	context->count[1] = 0;
    282  1.1  christos }
    283  1.1  christos 
    284  1.1  christos void
    285  1.1  christos isc_sha1_invalidate(isc_sha1_t *context) {
    286  1.1  christos 	memset(context, 0, sizeof(isc_sha1_t));
    287  1.1  christos }
    288  1.1  christos 
    289  1.1  christos /*!
    290  1.1  christos  * Run your data through this.
    291  1.1  christos  */
    292  1.1  christos void
    293  1.1  christos isc_sha1_update(isc_sha1_t *context, const unsigned char *data,
    294  1.1  christos 		unsigned int len)
    295  1.1  christos {
    296  1.1  christos 	unsigned int i, j;
    297  1.1  christos 
    298  1.1  christos 	INSIST(context != 0);
    299  1.1  christos 	INSIST(data != 0);
    300  1.1  christos 
    301  1.1  christos 	j = context->count[0];
    302  1.1  christos 	if ((context->count[0] += len << 3) < j)
    303  1.1  christos 		context->count[1] += (len >> 29) + 1;
    304  1.1  christos 	j = (j >> 3) & 63;
    305  1.1  christos 	if ((j + len) > 63) {
    306  1.1  christos 		(void)memcpy(&context->buffer[j], data, (i = 64 - j));
    307  1.1  christos 		transform(context->state, context->buffer);
    308  1.1  christos 		for (; i + 63 < len; i += 64)
    309  1.1  christos 			transform(context->state, &data[i]);
    310  1.1  christos 		j = 0;
    311  1.1  christos 	} else {
    312  1.1  christos 		i = 0;
    313  1.1  christos 	}
    314  1.1  christos 
    315  1.1  christos 	(void)memcpy(&context->buffer[j], &data[i], len - i);
    316  1.1  christos }
    317  1.1  christos 
    318  1.1  christos 
    319  1.1  christos /*!
    320  1.1  christos  * Add padding and return the message digest.
    321  1.1  christos  */
    322  1.1  christos 
    323  1.1  christos static const unsigned char final_200 = 128;
    324  1.1  christos static const unsigned char final_0 = 0;
    325  1.1  christos 
    326  1.1  christos void
    327  1.1  christos isc_sha1_final(isc_sha1_t *context, unsigned char *digest) {
    328  1.1  christos 	unsigned int i;
    329  1.1  christos 	unsigned char finalcount[8];
    330  1.1  christos 
    331  1.1  christos 	INSIST(digest != 0);
    332  1.1  christos 	INSIST(context != 0);
    333  1.1  christos 
    334  1.1  christos 	for (i = 0; i < 8; i++) {
    335  1.1  christos 		/* Endian independent */
    336  1.1  christos 		finalcount[i] = (unsigned char)
    337  1.1  christos 			((context->count[(i >= 4 ? 0 : 1)]
    338  1.1  christos 			  >> ((3 - (i & 3)) * 8)) & 255);
    339  1.1  christos 	}
    340  1.1  christos 
    341  1.1  christos 	isc_sha1_update(context, &final_200, 1);
    342  1.1  christos 	while ((context->count[0] & 504) != 448)
    343  1.1  christos 		isc_sha1_update(context, &final_0, 1);
    344  1.1  christos 	/* The next Update should cause a transform() */
    345  1.1  christos 	isc_sha1_update(context, finalcount, 8);
    346  1.1  christos 
    347  1.1  christos 	if (digest) {
    348  1.1  christos 		for (i = 0; i < 20; i++)
    349  1.1  christos 			digest[i] = (unsigned char)
    350  1.1  christos 				((context->state[i >> 2]
    351  1.1  christos 				  >> ((3 - (i & 3)) * 8)) & 255);
    352  1.1  christos 	}
    353  1.1  christos 
    354  1.1  christos 	memset(context, 0, sizeof(isc_sha1_t));
    355  1.1  christos }
    356  1.1  christos #endif
    357