3 * Whirlpool hash function
5 * (c) 2005 Straylight/Edgeware
8 /*----- Licensing notice --------------------------------------------------*
10 * This file is part of Catacomb.
12 * Catacomb is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
17 * Catacomb is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
22 * You should have received a copy of the GNU Library General Public
23 * License along with Catacomb; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
28 /*----- Header files ------------------------------------------------------*/
30 #include <mLib/bits.h>
33 #include "ghash-def.h"
35 #include "whirlpool.h"
36 #include "whirlpool-tab.h"
38 #if defined(HAVE_UINT64)
42 /*----- Static variables --------------------------------------------------*/
44 static const kludge64 C[10] = WHIRLPOOL_C;
47 static const kludge64 T[8][256] = WHIRLPOOL_T;
49 static const uint32 U[4][256] = WHIRLPOOL_U, V[4][256] = WHIRLPOOL_V;
52 /*----- Main code ---------------------------------------------------------*/
54 #define DUMP(k, v) do { \
57 for (i = 0; i < 8; i++) \
58 printf(" %08x %08x : %08x %08x\n", \
59 HI64(k[i]), LO64(k[i]), \
60 HI64(v[i]), LO64(v[i])); \
63 #define OFFSET(i, n) (((i) + 16 - (n)) % 8)
69 (LO64(x) >> ((j) * 8)) : \
70 (HI64(x) >> ((j) * 8 - 32)))
72 #define TT(v, i, j) T[j][BYTE(v[OFFSET(i, j)], j)]
74 #define XROW(vv, v, i) do { \
75 XOR64(vv[i], vv[i], TT(v, i, 1)); \
76 XOR64(vv[i], vv[i], TT(v, i, 2)); \
77 XOR64(vv[i], vv[i], TT(v, i, 3)); \
78 XOR64(vv[i], vv[i], TT(v, i, 4)); \
79 XOR64(vv[i], vv[i], TT(v, i, 5)); \
80 XOR64(vv[i], vv[i], TT(v, i, 6)); \
81 XOR64(vv[i], vv[i], TT(v, i, 7)); \
84 #define ROWZ(vv, v, i) do { \
85 vv[i] = TT(v, i, 0); \
89 #define ROWK(vv, v, i, k) do { \
91 XOR64(vv[i], vv[i], TT(v, i, 0)); \
97 #define BYTE(x, j) U8((x) >> (((j) & 3) * 8))
99 #define UUL(v, i, j) U[j & 3][BYTE(v[OFFSET(i, j)].lo, j)]
100 #define VVL(v, i, j) V[j & 3][BYTE(v[OFFSET(i, j)].lo, j)]
101 #define UUH(v, i, j) U[j & 3][BYTE(v[OFFSET(i, j)].hi, j)]
102 #define VVH(v, i, j) V[j & 3][BYTE(v[OFFSET(i, j)].hi, j)]
104 #define XROW(vv, v, i) do { \
105 vv[i].lo ^= UUL(v, i, 1); vv[i].hi ^= VVL(v, i, 1); \
106 vv[i].lo ^= UUL(v, i, 2); vv[i].hi ^= VVL(v, i, 2); \
107 vv[i].lo ^= UUL(v, i, 3); vv[i].hi ^= VVL(v, i, 3); \
108 vv[i].lo ^= VVH(v, i, 4); vv[i].hi ^= UUH(v, i, 4); \
109 vv[i].lo ^= VVH(v, i, 5); vv[i].hi ^= UUH(v, i, 5); \
110 vv[i].lo ^= VVH(v, i, 6); vv[i].hi ^= UUH(v, i, 6); \
111 vv[i].lo ^= VVH(v, i, 7); vv[i].hi ^= UUH(v, i, 7); \
114 #define ROWZ(vv, v, i) do { \
115 vv[i].lo = UUL(v, i, 0); vv[i].hi = VVL(v, i, 0); \
119 #define ROWK(vv, v, i, k) do { \
121 vv[i].lo ^= UUL(v, i, 0); vv[i].hi ^= VVL(v, i, 0); \
127 #define RHO(vv, v, kk, k) do { \
128 ROWK(kk, k, 0, *c++); ROWK(vv, v, 0, kk[0]); \
129 ROWZ(kk, k, 1); ROWK(vv, v, 1, kk[1]); \
130 ROWZ(kk, k, 2); ROWK(vv, v, 2, kk[2]); \
131 ROWZ(kk, k, 3); ROWK(vv, v, 3, kk[3]); \
132 ROWZ(kk, k, 4); ROWK(vv, v, 4, kk[4]); \
133 ROWZ(kk, k, 5); ROWK(vv, v, 5, kk[5]); \
134 ROWZ(kk, k, 6); ROWK(vv, v, 6, kk[6]); \
135 ROWZ(kk, k, 7); ROWK(vv, v, 7, kk[7]); \
138 void whirlpool_compress(whirlpool_ctx *ctx, const void *sbuf)
140 kludge64 m[8], k[8], kk[8], v[8], vv[8];
141 const kludge64 *c = C;
142 const octet *s = sbuf;
145 for (i = 0; i < 8; i++) {
146 LOAD64_L_(m[i], &s[i * 8]);
147 XOR64(v[i], m[i], ctx->s[i]);
150 RHO(vv, v, kk, ctx->s);
161 for (i = 0; i < 8; i++) {
162 XOR64(ctx->s[i], ctx->s[i], m[i]);
163 XOR64(ctx->s[i], ctx->s[i], v[i]);
167 /* --- @whirlpool_init@, @whirlpool256_init@ --- *
169 * Arguments: @whirlpool_ctx *ctx@ = pointer to context block to initialize
173 * Use: Initializes a context block ready for hashing.
176 void whirlpool_init(whirlpool_ctx *ctx)
180 for (i = 0; i < 8; i++)
181 SET64(ctx->s[i], 0, 0);
183 ctx->nh = ctx->nl = 0;
186 /* --- @whirlpool_set@, @whirlpool256_set@ --- *
188 * Arguments: @whirlpool_ctx *ctx@ = pointer to context block
189 * @const void *buf@ = pointer to state buffer
190 * @unsigned long count@ = current count of bytes processed
194 * Use: Initializes a context block from a given state. This is
195 * useful in cases where the initial hash state is meant to be
196 * secret, e.g., for NMAC and HMAC support.
199 void whirlpool_set(whirlpool_ctx *ctx, const void *buf, unsigned long count)
201 const octet *p = buf;
204 for (i = 0; i < 8; i++) {
205 LOAD64_L_(ctx->s[i], p);
209 ctx->nl = U32(count);
210 ctx->nh = U32(((count & ~MASK32) >> 16) >> 16);
213 /* --- @whirlpool_hash@, @whirlpool256_hash@ --- *
215 * Arguments: @whirlpool_ctx *ctx@ = pointer to context block
216 * @const void *buf@ = buffer of data to hash
217 * @size_t sz@ = size of buffer to hash
221 * Use: Hashes a buffer of data. The buffer may be of any size and
225 void whirlpool_hash(whirlpool_ctx *ctx, const void *buf, size_t sz)
227 HASH_BUFFER(WHIRLPOOL, whirlpool, ctx, buf, sz);
230 /* --- @whirlpool_done@, @whirlpool256_done@ --- *
232 * Arguments: @whirlpool_ctx *ctx@ = pointer to context block
233 * @void *hash@ = pointer to output buffer
237 * Use: Returns the hash of the data read so far.
240 static void final(whirlpool_ctx *ctx)
242 HASH_PAD(WHIRLPOOL, whirlpool, ctx, 0x80, 0, 32);
243 memset(ctx->buf + WHIRLPOOL_BUFSZ - 32, 0, 24);
244 STORE32(ctx->buf + WHIRLPOOL_BUFSZ - 8, (ctx->nl >> 29) | (ctx->nh << 3));
245 STORE32(ctx->buf + WHIRLPOOL_BUFSZ - 4, ctx->nl << 3);
246 whirlpool_compress(ctx, ctx->buf);
249 void whirlpool_done(whirlpool_ctx *ctx, void *hash)
255 for (i = 0; i < 8; i++) {
256 STORE64_L_(p, ctx->s[i]);
261 void whirlpool256_done(whirlpool256_ctx *ctx, void *hash)
267 for (i = 0; i < 4; i++) {
268 STORE64_L_(p, ctx->s[i]);
273 /* --- @whirlpool_state@, @whirlpool256_state@ --- *
275 * Arguments: @whirlpool_ctx *ctx@ = pointer to context
276 * @void *state@ = pointer to buffer for current state
278 * Returns: Number of bytes written to the hash function so far.
280 * Use: Returns the current state of the hash function such that
281 * it can be passed to @whirlpool_set@.
284 unsigned long whirlpool_state(whirlpool_ctx *ctx, void *state)
289 for (i = 0; i < 8; i++) {
290 STORE64_L_(p, ctx->s[i]);
293 return (ctx->nl | ((ctx->nh << 16) << 16));
296 /* --- Generic interface --- */
298 GHASH_DEF(WHIRLPOOL, whirlpool)
300 /* --- Test code --- */
302 HASH_TEST(WHIRLPOOL, whirlpool)
304 /*----- That's all, folks -------------------------------------------------*/