3 * $Id: cast256.c,v 1.2 2004/04/08 01:36:15 mdw Exp $
5 * The CAST-256 block cipher
7 * (c) 2000 Straylight/Edgeware
10 /*----- Licensing notice --------------------------------------------------*
12 * This file is part of Catacomb.
14 * Catacomb is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU Library General Public License as
16 * published by the Free Software Foundation; either version 2 of the
17 * License, or (at your option) any later version.
19 * Catacomb is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Library General Public License for more details.
24 * You should have received a copy of the GNU Library General Public
25 * License along with Catacomb; if not, write to the Free
26 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
30 /*----- Header files ------------------------------------------------------*/
37 #include <mLib/bits.h>
40 #include "cast-base.h"
45 /*----- Global variables --------------------------------------------------*/
47 const octet cast256_keysz[] = { KSZ_RANGE, CAST256_KEYSZ, 0, 32, 1 };
49 /*----- Main code ---------------------------------------------------------*/
51 /* --- @cast256_init@ --- *
53 * Arguments: @cast128_ctx *k@ = pointer to key block to fill in
54 * @const void *buf@ = pointer to buffer of key material
55 * @size_t sz@ = size of key material
59 * Use: Initializes a CAST-256 key buffer. CAST-256 accepts
60 * 256-bit keys or shorter.
63 void cast256_init(cast256_ctx *k, const void *buf, size_t sz)
70 uint32 a, b, c, d, e, f, g, h;
74 /* --- Fiddle with the key size --- */
76 KSZ_ASSERT(cast256, sz);
78 /* --- Read the key into the array --- */
86 a |= ((uint32)*p++ << b);
102 /* --- Read the key words out --- */
104 a = kk[0]; b = kk[1]; c = kk[2]; d = kk[3];
105 e = kk[4]; f = kk[5]; g = kk[6]; h = kk[7];
107 #define ROOT2 0x5a827999
108 #define ROOT3 0x6ed9eba1
115 for (i = 0; i < 12; i++) {
116 for (j = 0; j < 2; j++) {
117 CAST_R1(m, r, g, h); m += ROOT3; r = (r + 17) & 0x1f;
118 CAST_R2(m, r, f, g); m += ROOT3; r = (r + 17) & 0x1f;
119 CAST_R3(m, r, e, f); m += ROOT3; r = (r + 17) & 0x1f;
120 CAST_R1(m, r, d, e); m += ROOT3; r = (r + 17) & 0x1f;
121 CAST_R2(m, r, c, d); m += ROOT3; r = (r + 17) & 0x1f;
122 CAST_R3(m, r, b, c); m += ROOT3; r = (r + 17) & 0x1f;
123 CAST_R1(m, r, a, b); m += ROOT3; r = (r + 17) & 0x1f;
124 CAST_R2(m, r, h, a); m += ROOT3; r = (r + 17) & 0x1f;
126 km[0] = h; km[1] = f; km[2] = d; km[3] = b;
127 kr[0] = a & 0x1f; kr[1] = c & 0x1f; kr[2] = e & 0x1f; kr[3] = g & 0x1f;
132 /* --- @cast256_eblk@, @cast256_dblk@ --- *
134 * Arguments: @const cast256_ctx *k@ = pointer to key block
135 * @const uint32 s[2]@ = pointer to source block
136 * @uint32 d[2]@ = pointer to destination block
140 * Use: Low-level block encryption and decryption.
143 #define Q0(k, r, a, b, c, d) do { \
144 CAST_R1(k[0], r[0], c, d); \
145 CAST_R2(k[1], r[1], b, c); \
146 CAST_R3(k[2], r[2], a, b); \
147 CAST_R1(k[3], r[3], d, a); \
150 #define Q1(k, r, a, b, c, d) do { \
151 CAST_R1(k[3], r[3], d, a); \
152 CAST_R3(k[2], r[2], a, b); \
153 CAST_R2(k[1], r[1], b, c); \
154 CAST_R1(k[0], r[0], c, d); \
157 void cast256_eblk(const cast256_ctx *k, const uint32 *s, uint32 *d)
159 uint32 aa = s[0], bb = s[1], cc = s[2], dd = s[3];
160 const uint32 *km = k->km;
161 const octet *kr = k->kr;
163 Q0(km, kr, aa, bb, cc, dd); km += 4; kr += 4;
164 Q0(km, kr, aa, bb, cc, dd); km += 4; kr += 4;
165 Q0(km, kr, aa, bb, cc, dd); km += 4; kr += 4;
166 Q0(km, kr, aa, bb, cc, dd); km += 4; kr += 4;
167 Q0(km, kr, aa, bb, cc, dd); km += 4; kr += 4;
168 Q0(km, kr, aa, bb, cc, dd); km += 4; kr += 4;
170 Q1(km, kr, aa, bb, cc, dd); km += 4; kr += 4;
171 Q1(km, kr, aa, bb, cc, dd); km += 4; kr += 4;
172 Q1(km, kr, aa, bb, cc, dd); km += 4; kr += 4;
173 Q1(km, kr, aa, bb, cc, dd); km += 4; kr += 4;
174 Q1(km, kr, aa, bb, cc, dd); km += 4; kr += 4;
175 Q1(km, kr, aa, bb, cc, dd); km += 4; kr += 4;
177 d[0] = aa; d[1] = bb; d[2] = cc; d[3] = dd;
180 void cast256_dblk(const cast256_ctx *k, const uint32 *s, uint32 *d)
182 uint32 aa = s[0], bb = s[1], cc = s[2], dd = s[3];
183 const uint32 *km = k->km + 48;
184 const octet *kr = k->kr + 48;
186 km -= 4; kr -= 4; Q0(km, kr, aa, bb, cc, dd);
187 km -= 4; kr -= 4; Q0(km, kr, aa, bb, cc, dd);
188 km -= 4; kr -= 4; Q0(km, kr, aa, bb, cc, dd);
189 km -= 4; kr -= 4; Q0(km, kr, aa, bb, cc, dd);
190 km -= 4; kr -= 4; Q0(km, kr, aa, bb, cc, dd);
191 km -= 4; kr -= 4; Q0(km, kr, aa, bb, cc, dd);
193 km -= 4; kr -= 4; Q1(km, kr, aa, bb, cc, dd);
194 km -= 4; kr -= 4; Q1(km, kr, aa, bb, cc, dd);
195 km -= 4; kr -= 4; Q1(km, kr, aa, bb, cc, dd);
196 km -= 4; kr -= 4; Q1(km, kr, aa, bb, cc, dd);
197 km -= 4; kr -= 4; Q1(km, kr, aa, bb, cc, dd);
198 km -= 4; kr -= 4; Q1(km, kr, aa, bb, cc, dd);
200 d[0] = aa; d[1] = bb; d[2] = cc; d[3] = dd;
203 BLKC_TEST(CAST256, cast256)
205 /*----- That's all, folks -------------------------------------------------*/