annotate src/lib/sha1.c @ 9191:b340ecb24469 HEAD

Fix VPATH build of RQUOTA support. Some rpcgen derive #include "..." paths from the infile argument. This will be off for VPATH builds, as the generated rquota_xdr.c code will look in $(srcdir), but we'll generate the rquota.h file in $(builddir). Play safe and copy rquota.x to $(builddir) first. This fixes the build on openSUSE 11.1.
author Matthias Andree <matthias.andree@gmx.de>
date Tue, 07 Jul 2009 21:01:36 +0200
parents 9ec2882243a6
children
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 /* constant table */
6420
a8b515e1a26f Removed _ prefixes from function names.
Timo Sirainen <tss@iki.fi>
parents: 3452
diff changeset
42 static uint32_t SHA1_K[] = { 0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6 };
a8b515e1a26f Removed _ prefixes from function names.
Timo Sirainen <tss@iki.fi>
parents: 3452
diff changeset
43 #define K(t) SHA1_K[(t) / 20]
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
44
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
45 #define F0(b, c, d) (((b) & (c)) | ((~(b)) & (d)))
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
46 #define F1(b, c, d) (((b) ^ (c)) ^ (d))
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
47 #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
48 #define F3(b, c, d) (((b) ^ (c)) ^ (d))
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 #define S(n, x) (((x) << (n)) | ((x) >> (32 - n)))
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
51
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
52 #define H(n) (ctxt->h.b32[(n)])
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
53 #define COUNT (ctxt->count)
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
54 #define BCOUNT (ctxt->c.b64[0] / 8)
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
55 #define W(n) (ctxt->m.b32[(n)])
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
56
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
57 #define PUTBYTE(x) { \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
58 ctxt->m.b8[(COUNT % 64)] = (x); \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
59 COUNT++; \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
60 COUNT %= 64; \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
61 ctxt->c.b64[0] += 8; \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
62 if (COUNT % 64 == 0) \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
63 sha1_step(ctxt); \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
64 }
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 PUTPAD(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 if (COUNT % 64 == 0) \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
71 sha1_step(ctxt); \
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
72 }
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 static void sha1_step(struct sha1_ctxt *);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
75
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
76 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
77 sha1_step(struct sha1_ctxt *ctxt)
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
78 {
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
79 uint32_t a, b, c, d, e;
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
80 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
81 uint32_t tmp;
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
82
8572
9ec2882243a6 Try to use (Apple) gcc's __BIG_ENDIAN__ and __LITTLE_ENDIAN__ macros if possible.
Timo Sirainen <tss@iki.fi>
parents: 6420
diff changeset
83 #if !WORDS_BIGENDIAN
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
84 struct sha1_ctxt tctxt;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
85 memmove(&tctxt.m.b8[0], &ctxt->m.b8[0], 64);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
86 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
87 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
88 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
89 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
90 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
91 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
92 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
93 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
94 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
95 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
96 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
97 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
98 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
99 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
100 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
101 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
102 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
103 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
104 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
105 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
106 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
107 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
108 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
109 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
110 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
111 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
112 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
113 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
114 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
115 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
116 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
117 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
118 #endif
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
119
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
120 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
121
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
122 for (t = 0; t < 20; t++) {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
123 s = t & 0x0f;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
124 if (t >= 16) {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
125 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
126 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
127 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
128 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
129 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
130 for (t = 20; t < 40; t++) {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
131 s = t & 0x0f;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
132 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
133 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
134 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
135 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
136 for (t = 40; t < 60; t++) {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
137 s = t & 0x0f;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
138 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
139 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
140 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
141 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
142 for (t = 60; t < 80; t++) {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
143 s = t & 0x0f;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
144 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
145 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
146 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
147 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
148
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
149 H(0) = H(0) + a;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
150 H(1) = H(1) + b;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
151 H(2) = H(2) + c;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
152 H(3) = H(3) + d;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
153 H(4) = H(4) + e;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
154
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
155 memset(&ctxt->m.b8[0], 0, 64);
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 /*------------------------------------------------------------*/
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
159
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
160 void
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
161 sha1_init(struct sha1_ctxt *ctxt)
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
162 {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
163 memset(ctxt, 0, sizeof(struct sha1_ctxt));
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
164 H(0) = 0x67452301;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
165 H(1) = 0xefcdab89;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
166 H(2) = 0x98badcfe;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
167 H(3) = 0x10325476;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
168 H(4) = 0xc3d2e1f0;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
169 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
170
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
171 void
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
172 sha1_pad(struct sha1_ctxt *ctxt)
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
173 {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
174 size_t padlen; /*pad length in bytes*/
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
175 size_t padstart;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
176
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
177 PUTPAD(0x80);
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 padstart = COUNT % 64;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
180 padlen = 64 - padstart;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
181 if (padlen < 8) {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
182 memset(&ctxt->m.b8[padstart], 0, padlen);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
183 COUNT += padlen;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
184 COUNT %= 64;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
185 sha1_step(ctxt);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
186 padstart = COUNT % 64; /* should be 0 */
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
187 padlen = 64 - padstart; /* should be 64 */
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
188 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
189 memset(&ctxt->m.b8[padstart], 0, padlen - 8);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
190 COUNT += (padlen - 8);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
191 COUNT %= 64;
8572
9ec2882243a6 Try to use (Apple) gcc's __BIG_ENDIAN__ and __LITTLE_ENDIAN__ macros if possible.
Timo Sirainen <tss@iki.fi>
parents: 6420
diff changeset
192 #if WORDS_BIGENDIAN
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
193 PUTPAD(ctxt->c.b8[0]); PUTPAD(ctxt->c.b8[1]);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
194 PUTPAD(ctxt->c.b8[2]); PUTPAD(ctxt->c.b8[3]);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
195 PUTPAD(ctxt->c.b8[4]); PUTPAD(ctxt->c.b8[5]);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
196 PUTPAD(ctxt->c.b8[6]); PUTPAD(ctxt->c.b8[7]);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
197 #else
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
198 PUTPAD(ctxt->c.b8[7]); PUTPAD(ctxt->c.b8[6]);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
199 PUTPAD(ctxt->c.b8[5]); PUTPAD(ctxt->c.b8[4]);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
200 PUTPAD(ctxt->c.b8[3]); PUTPAD(ctxt->c.b8[2]);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
201 PUTPAD(ctxt->c.b8[1]); PUTPAD(ctxt->c.b8[0]);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
202 #endif
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
203 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
204
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
205 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
206 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
207 {
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
208 const unsigned char *input_c = input;
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
209 size_t gaplen;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
210 size_t gapstart;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
211 size_t off;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
212 size_t copysiz;
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 off = 0;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
215
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
216 while (off < len) {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
217 gapstart = COUNT % 64;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
218 gaplen = 64 - gapstart;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
219
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
220 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
221 memmove(&ctxt->m.b8[gapstart], &input_c[off], copysiz);
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
222 COUNT += copysiz;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
223 COUNT %= 64;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
224 ctxt->c.b64[0] += copysiz * 8;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
225 if (COUNT % 64 == 0)
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
226 sha1_step(ctxt);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
227 off += copysiz;
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 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
230
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
231 void
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
232 sha1_result(struct sha1_ctxt *ctxt, void *digest0)
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
233 {
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
234 uint8_t *digest;
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
235
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
236 digest = (uint8_t *)digest0;
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
237 sha1_pad(ctxt);
8572
9ec2882243a6 Try to use (Apple) gcc's __BIG_ENDIAN__ and __LITTLE_ENDIAN__ macros if possible.
Timo Sirainen <tss@iki.fi>
parents: 6420
diff changeset
238 #if WORDS_BIGENDIAN
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
239 memmove(digest, &ctxt->h.b8[0], 20);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
240 #else
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
241 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
242 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
243 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
244 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
245 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
246 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
247 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
248 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
249 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
250 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
251 #endif
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
252 safe_memset(ctxt, 0, sizeof(struct sha1_ctxt));
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
253 }
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
254
2385
161a9e818ad6 Changed to use standard uint* types rather than u_int*. Also removed
Timo Sirainen <tss@iki.fi>
parents: 2370
diff changeset
255 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
256 unsigned char result[SHA1_RESULTLEN])
2370
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
257 {
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
258 struct sha1_ctxt ctx;
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
259
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
260 sha1_init(&ctx);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
261 sha1_loop(&ctx, data, size);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
262 sha1_result(&ctx, result);
eda658b1557e Forgot from last dovecotpw commit.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
263 }