annotate src/lib/sha1.c @ 2628:59059ea978b2 HEAD

Change src from unsigned char* toi void* so callers don't have to do casting always.
author Timo Sirainen <tss@iki.fi>
date Wed, 15 Sep 2004 16:19:47 +0300
parents 161a9e818ad6
children 211f0c9588c2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
1 /* $KAME: sha1.c,v 1.5 2000/11/08 06:13:08 itojun Exp $ */
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
2 /*
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
3 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
4 * All rights reserved.
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
5 *
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
6 * Redistribution and use in source and binary forms, with or without
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
7 * modification, are permitted provided that the following conditions
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
8 * are met:
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
9 * 1. Redistributions of source code must retain the above copyright
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
10 * notice, this list of conditions and the following disclaimer.
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
11 * 2. Redistributions in binary form must reproduce the above copyright
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
12 * notice, this list of conditions and the following disclaimer in the
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
13 * documentation and/or other materials provided with the distribution.
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
14 * 3. Neither the name of the project nor the names of its contributors
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
15 * may be used to endorse or promote products derived from this software
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
16 * without specific prior written permission.
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
17 *
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
18 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
28 * SUCH DAMAGE.
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
29 */
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
30
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
31 /*
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
32 * FIPS pub 180-1: Secure Hash Algorithm (SHA-1)
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
33 * based on: http://csrc.nist.gov/fips/fip180-1.txt
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
34 * implemented by Jun-ichiro itojun Itoh <itojun@itojun.org>
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
35 */
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
36
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
37 #include "lib.h"
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
38 #include "sha1.h"
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
39 #include "safe-memset.h"
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
40
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
41 /* sanity check */
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
42 #if BYTE_ORDER != BIG_ENDIAN
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
43 # if BYTE_ORDER != LITTLE_ENDIAN
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
44 # define unsupported 1
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
45 # endif
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
46 #endif
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
47
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
48 #ifndef unsupported
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
49
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
50 /* constant table */
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
51 static uint32_t _K[] = { 0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6 };
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
52 #define K(t) _K[(t) / 20]
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
53
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
54 #define F0(b, c, d) (((b) & (c)) | ((~(b)) & (d)))
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
55 #define F1(b, c, d) (((b) ^ (c)) ^ (d))
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
56 #define F2(b, c, d) (((b) & (c)) | ((b) & (d)) | ((c) & (d)))
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
57 #define F3(b, c, d) (((b) ^ (c)) ^ (d))
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
58
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
59 #define S(n, x) (((x) << (n)) | ((x) >> (32 - n)))
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
60
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
61 #define H(n) (ctxt->h.b32[(n)])
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
62 #define COUNT (ctxt->count)
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
63 #define BCOUNT (ctxt->c.b64[0] / 8)
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
64 #define W(n) (ctxt->m.b32[(n)])
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
65
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
66 #define PUTBYTE(x) { \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
67 ctxt->m.b8[(COUNT % 64)] = (x); \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
68 COUNT++; \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
69 COUNT %= 64; \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
70 ctxt->c.b64[0] += 8; \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
71 if (COUNT % 64 == 0) \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
72 sha1_step(ctxt); \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
73 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
74
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
75 #define PUTPAD(x) { \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
76 ctxt->m.b8[(COUNT % 64)] = (x); \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
77 COUNT++; \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
78 COUNT %= 64; \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
79 if (COUNT % 64 == 0) \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
80 sha1_step(ctxt); \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
81 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
82
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
83 static void sha1_step(struct sha1_ctxt *);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
84
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
85 static void
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
86 sha1_step(struct sha1_ctxt *ctxt)
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
87 {
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
88 uint32_t a, b, c, d, e;
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
89 size_t t, s;
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
90 uint32_t tmp;
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
91
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
92 #if BYTE_ORDER == LITTLE_ENDIAN
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
93 struct sha1_ctxt tctxt;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
94 memmove(&tctxt.m.b8[0], &ctxt->m.b8[0], 64);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
95 ctxt->m.b8[0] = tctxt.m.b8[3]; ctxt->m.b8[1] = tctxt.m.b8[2];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
96 ctxt->m.b8[2] = tctxt.m.b8[1]; ctxt->m.b8[3] = tctxt.m.b8[0];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
97 ctxt->m.b8[4] = tctxt.m.b8[7]; ctxt->m.b8[5] = tctxt.m.b8[6];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
98 ctxt->m.b8[6] = tctxt.m.b8[5]; ctxt->m.b8[7] = tctxt.m.b8[4];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
99 ctxt->m.b8[8] = tctxt.m.b8[11]; ctxt->m.b8[9] = tctxt.m.b8[10];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
100 ctxt->m.b8[10] = tctxt.m.b8[9]; ctxt->m.b8[11] = tctxt.m.b8[8];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
101 ctxt->m.b8[12] = tctxt.m.b8[15]; ctxt->m.b8[13] = tctxt.m.b8[14];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
102 ctxt->m.b8[14] = tctxt.m.b8[13]; ctxt->m.b8[15] = tctxt.m.b8[12];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
103 ctxt->m.b8[16] = tctxt.m.b8[19]; ctxt->m.b8[17] = tctxt.m.b8[18];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
104 ctxt->m.b8[18] = tctxt.m.b8[17]; ctxt->m.b8[19] = tctxt.m.b8[16];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
105 ctxt->m.b8[20] = tctxt.m.b8[23]; ctxt->m.b8[21] = tctxt.m.b8[22];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
106 ctxt->m.b8[22] = tctxt.m.b8[21]; ctxt->m.b8[23] = tctxt.m.b8[20];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
107 ctxt->m.b8[24] = tctxt.m.b8[27]; ctxt->m.b8[25] = tctxt.m.b8[26];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
108 ctxt->m.b8[26] = tctxt.m.b8[25]; ctxt->m.b8[27] = tctxt.m.b8[24];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
109 ctxt->m.b8[28] = tctxt.m.b8[31]; ctxt->m.b8[29] = tctxt.m.b8[30];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
110 ctxt->m.b8[30] = tctxt.m.b8[29]; ctxt->m.b8[31] = tctxt.m.b8[28];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
111 ctxt->m.b8[32] = tctxt.m.b8[35]; ctxt->m.b8[33] = tctxt.m.b8[34];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
112 ctxt->m.b8[34] = tctxt.m.b8[33]; ctxt->m.b8[35] = tctxt.m.b8[32];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
113 ctxt->m.b8[36] = tctxt.m.b8[39]; ctxt->m.b8[37] = tctxt.m.b8[38];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
114 ctxt->m.b8[38] = tctxt.m.b8[37]; ctxt->m.b8[39] = tctxt.m.b8[36];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
115 ctxt->m.b8[40] = tctxt.m.b8[43]; ctxt->m.b8[41] = tctxt.m.b8[42];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
116 ctxt->m.b8[42] = tctxt.m.b8[41]; ctxt->m.b8[43] = tctxt.m.b8[40];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
117 ctxt->m.b8[44] = tctxt.m.b8[47]; ctxt->m.b8[45] = tctxt.m.b8[46];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
118 ctxt->m.b8[46] = tctxt.m.b8[45]; ctxt->m.b8[47] = tctxt.m.b8[44];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
119 ctxt->m.b8[48] = tctxt.m.b8[51]; ctxt->m.b8[49] = tctxt.m.b8[50];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
120 ctxt->m.b8[50] = tctxt.m.b8[49]; ctxt->m.b8[51] = tctxt.m.b8[48];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
121 ctxt->m.b8[52] = tctxt.m.b8[55]; ctxt->m.b8[53] = tctxt.m.b8[54];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
122 ctxt->m.b8[54] = tctxt.m.b8[53]; ctxt->m.b8[55] = tctxt.m.b8[52];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
123 ctxt->m.b8[56] = tctxt.m.b8[59]; ctxt->m.b8[57] = tctxt.m.b8[58];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
124 ctxt->m.b8[58] = tctxt.m.b8[57]; ctxt->m.b8[59] = tctxt.m.b8[56];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
125 ctxt->m.b8[60] = tctxt.m.b8[63]; ctxt->m.b8[61] = tctxt.m.b8[62];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
126 ctxt->m.b8[62] = tctxt.m.b8[61]; ctxt->m.b8[63] = tctxt.m.b8[60];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
127 #endif
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
128
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
129 a = H(0); b = H(1); c = H(2); d = H(3); e = H(4);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
130
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
131 for (t = 0; t < 20; t++) {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
132 s = t & 0x0f;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
133 if (t >= 16) {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
134 W(s) = S(1, W((s+13) & 0x0f) ^ W((s+8) & 0x0f) ^ W((s+2) & 0x0f) ^ W(s));
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
135 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
136 tmp = S(5, a) + F0(b, c, d) + e + W(s) + K(t);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
137 e = d; d = c; c = S(30, b); b = a; a = tmp;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
138 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
139 for (t = 20; t < 40; t++) {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
140 s = t & 0x0f;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
141 W(s) = S(1, W((s+13) & 0x0f) ^ W((s+8) & 0x0f) ^ W((s+2) & 0x0f) ^ W(s));
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
142 tmp = S(5, a) + F1(b, c, d) + e + W(s) + K(t);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
143 e = d; d = c; c = S(30, b); b = a; a = tmp;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
144 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
145 for (t = 40; t < 60; t++) {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
146 s = t & 0x0f;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
147 W(s) = S(1, W((s+13) & 0x0f) ^ W((s+8) & 0x0f) ^ W((s+2) & 0x0f) ^ W(s));
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
148 tmp = S(5, a) + F2(b, c, d) + e + W(s) + K(t);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
149 e = d; d = c; c = S(30, b); b = a; a = tmp;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
150 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
151 for (t = 60; t < 80; t++) {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
152 s = t & 0x0f;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
153 W(s) = S(1, W((s+13) & 0x0f) ^ W((s+8) & 0x0f) ^ W((s+2) & 0x0f) ^ W(s));
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
154 tmp = S(5, a) + F3(b, c, d) + e + W(s) + K(t);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
155 e = d; d = c; c = S(30, b); b = a; a = tmp;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
156 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
157
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
158 H(0) = H(0) + a;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
159 H(1) = H(1) + b;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
160 H(2) = H(2) + c;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
161 H(3) = H(3) + d;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
162 H(4) = H(4) + e;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
163
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
164 memset(&ctxt->m.b8[0], 0, 64);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
165 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
166
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
167 /*------------------------------------------------------------*/
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
168
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
169 void
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
170 sha1_init(struct sha1_ctxt *ctxt)
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
171 {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
172 memset(ctxt, 0, sizeof(struct sha1_ctxt));
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
173 H(0) = 0x67452301;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
174 H(1) = 0xefcdab89;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
175 H(2) = 0x98badcfe;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
176 H(3) = 0x10325476;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
177 H(4) = 0xc3d2e1f0;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
178 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
179
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
180 void
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
181 sha1_pad(struct sha1_ctxt *ctxt)
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
182 {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
183 size_t padlen; /*pad length in bytes*/
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
184 size_t padstart;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
185
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
186 PUTPAD(0x80);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
187
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
188 padstart = COUNT % 64;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
189 padlen = 64 - padstart;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
190 if (padlen < 8) {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
191 memset(&ctxt->m.b8[padstart], 0, padlen);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
192 COUNT += padlen;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
193 COUNT %= 64;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
194 sha1_step(ctxt);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
195 padstart = COUNT % 64; /* should be 0 */
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
196 padlen = 64 - padstart; /* should be 64 */
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
197 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
198 memset(&ctxt->m.b8[padstart], 0, padlen - 8);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
199 COUNT += (padlen - 8);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
200 COUNT %= 64;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
201 #if BYTE_ORDER == BIG_ENDIAN
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
202 PUTPAD(ctxt->c.b8[0]); PUTPAD(ctxt->c.b8[1]);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
203 PUTPAD(ctxt->c.b8[2]); PUTPAD(ctxt->c.b8[3]);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
204 PUTPAD(ctxt->c.b8[4]); PUTPAD(ctxt->c.b8[5]);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
205 PUTPAD(ctxt->c.b8[6]); PUTPAD(ctxt->c.b8[7]);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
206 #else
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
207 PUTPAD(ctxt->c.b8[7]); PUTPAD(ctxt->c.b8[6]);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
208 PUTPAD(ctxt->c.b8[5]); PUTPAD(ctxt->c.b8[4]);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
209 PUTPAD(ctxt->c.b8[3]); PUTPAD(ctxt->c.b8[2]);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
210 PUTPAD(ctxt->c.b8[1]); PUTPAD(ctxt->c.b8[0]);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
211 #endif
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
212 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
213
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
214 void
2628
59059ea978b2 Change src from unsigned char* toi void* so callers don't have to do
Timo Sirainen <tss@iki.fi>
parents: 2385
diff changeset
215 sha1_loop(struct sha1_ctxt *ctxt, const void *input, size_t len)
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
216 {
2628
59059ea978b2 Change src from unsigned char* toi void* so callers don't have to do
Timo Sirainen <tss@iki.fi>
parents: 2385
diff changeset
217 const unsigned char *input_c = input;
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
218 size_t gaplen;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
219 size_t gapstart;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
220 size_t off;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
221 size_t copysiz;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
222
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
223 off = 0;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
224
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
225 while (off < len) {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
226 gapstart = COUNT % 64;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
227 gaplen = 64 - gapstart;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
228
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
229 copysiz = (gaplen < len - off) ? gaplen : len - off;
2628
59059ea978b2 Change src from unsigned char* toi void* so callers don't have to do
Timo Sirainen <tss@iki.fi>
parents: 2385
diff changeset
230 memmove(&ctxt->m.b8[gapstart], &input_c[off], copysiz);
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
231 COUNT += copysiz;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
232 COUNT %= 64;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
233 ctxt->c.b64[0] += copysiz * 8;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
234 if (COUNT % 64 == 0)
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
235 sha1_step(ctxt);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
236 off += copysiz;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
237 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
238 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
239
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
240 void
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
241 sha1_result(struct sha1_ctxt *ctxt, void *digest0)
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
242 {
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
243 uint8_t *digest;
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
244
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
245 digest = (uint8_t *)digest0;
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
246 sha1_pad(ctxt);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
247 #if BYTE_ORDER == BIG_ENDIAN
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
248 memmove(digest, &ctxt->h.b8[0], 20);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
249 #else
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
250 digest[0] = ctxt->h.b8[3]; digest[1] = ctxt->h.b8[2];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
251 digest[2] = ctxt->h.b8[1]; digest[3] = ctxt->h.b8[0];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
252 digest[4] = ctxt->h.b8[7]; digest[5] = ctxt->h.b8[6];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
253 digest[6] = ctxt->h.b8[5]; digest[7] = ctxt->h.b8[4];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
254 digest[8] = ctxt->h.b8[11]; digest[9] = ctxt->h.b8[10];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
255 digest[10] = ctxt->h.b8[9]; digest[11] = ctxt->h.b8[8];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
256 digest[12] = ctxt->h.b8[15]; digest[13] = ctxt->h.b8[14];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
257 digest[14] = ctxt->h.b8[13]; digest[15] = ctxt->h.b8[12];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
258 digest[16] = ctxt->h.b8[19]; digest[17] = ctxt->h.b8[18];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
259 digest[18] = ctxt->h.b8[17]; digest[19] = ctxt->h.b8[16];
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
260 #endif
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
261 safe_memset(ctxt, 0, sizeof(struct sha1_ctxt));
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
262 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
263
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
264 void sha1_get_digest(const void *data, size_t size,
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
265 unsigned char result[SHA1_RESULTLEN])
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
266 {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
267 struct sha1_ctxt ctx;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
268
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
269 sha1_init(&ctx);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
270 sha1_loop(&ctx, data, size);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
271 sha1_result(&ctx, result);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
272 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
273
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
274 #endif /*unsupported*/