Gather up another utility.
[u/mdw/catacomb] / desx.c
CommitLineData
b348397a 1/* -*-c-*-
2 *
b817bfc6 3 * $Id: desx.c,v 1.3 2004/04/08 01:36:15 mdw Exp $
b348397a 4 *
5 * Implementation of DESX
6 *
7 * (c) 2001 Straylight/Edgeware
8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of Catacomb.
13 *
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.
18 *
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.
23 *
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,
27 * MA 02111-1307, USA.
28 */
29
b348397a 30/*----- Header files ------------------------------------------------------*/
31
32#include <assert.h>
33#include <stdio.h>
34#include <stdlib.h>
35#include <string.h>
36
37#include <mLib/bits.h>
38
39#include "blkc.h"
40#include "des-base.h"
41#include "des.h"
42#include "desx.h"
43#include "desx-tab.h"
44#include "gcipher.h"
45
46/*----- Tables ------------------------------------------------------------*/
47
4e66da02 48static const octet s[256] = DESX_S;
b348397a 49
50/*----- Global variables --------------------------------------------------*/
51
52const octet desx_keysz[] = { KSZ_SET, 7, 8, 15, 16, 23, 24, 0 };
53
54/*----- Main code ---------------------------------------------------------*/
55
56/* --- @desx_init@ --- *
57 *
58 * Arguments: @desx_ctx *k@ = pointer to key block
59 * @const void *buf@ = pointer to key buffer
60 * @size_t sz@ = size of key material
61 *
62 * Returns: ---
63 *
64 * Use: Initializes a DESX key buffer. The key buffer contains, in
65 * order, a single-DES key (either 7 or 8 bytes), an optional
66 * 8-byte pre-whitening key, and an optional 8-byte
67 * port-whitening key. If no whitening keys are specified, the
68 * algorithm becomes the same as single-DES.
69 */
70
71static void mangle(octet *b, const octet *p)
72{
73 unsigned i;
74
75 for (i = 0; i < 8; i++)
76 b[i] = *p++ ^ s[b[i] ^ b[(i + 1) & 7u]];
77}
78
79void desx_init(desx_ctx *k, const void *buf, size_t sz)
80{
81 const octet *p = buf, *kk = buf;
82 size_t n;
83
84 KSZ_ASSERT(desx, sz);
85
86 n = sz % 8 == 7 ? 7 : 8;
87 des_init(&k->k, p, n);
88 p += n;
89 sz -= n;
90 if (!sz)
91 k->prea = k->preb = k->posta = k->postb = 0;
92 else {
93 const octet *q = p;
94 k->prea = LOAD32(q + 0);
95 k->preb = LOAD32(q + 4);
96 p += 8;
97 sz -= 8;
98 if (sz) {
99 k->posta = LOAD32(p + 0);
100 k->postb = LOAD32(p + 4);
101 } else {
102 octet b[16];
103
104 if (n == 7) {
105
106 /* --- Expand 7 bits to 8 bits --- *
107 *
108 * Cloned and hacked from @des_init@ to set parity.
109 */
110
111 uint32 x, y, z;
112 x = LOAD32(kk + 0);
113 x = (x & 0xfe000000) | ((x & 0x01fffff0) >> 1);
114 x = (x & 0xfffe0000) | ((x & 0x0001fff8) >> 1);
115 x = (x & 0xfffffe00) | ((x & 0x000001fc) >> 1);
116 z = x; z ^= z >> 4; z ^= z >> 2; z ^= z >> 1;
117 x |= (z & 0x01010101) ^ 0x01010101;
118
119 y = LOAD32(kk + 3) << 1;
120 y = (y & 0x000000fe) | ((y & 0x1fffff00) << 1);
121 y = (y & 0x0000fefe) | ((y & 0x3fff0000) << 1);
122 y = (y & 0x00fefefe) | ((y & 0x7f000000) << 1);
123 z = y; z ^= z >> 4; z ^= z >> 2; z ^= z >> 1;
124 y |= (z & 0x01010101) ^ 0x01010101;
125
126 kk = b + 8;
127 STORE32(kk + 0, x); STORE32(kk + 4, y);
128 }
129
130 memset(b, 0, 8);
131 mangle(b, kk);
132 mangle(b, q);
133 k->posta = LOAD32(b + 0);
134 k->postb = LOAD32(b + 4);
135 }
136 }
137}
138
139/* --- @desx_eblk@, @desx_dblk@ --- *
140 *
141 * Arguments: @const desx_ctx *k@ = pointer to key block
142 * @const uint32 s[2]@ = pointer to source block
143 * @uint32 d[2]@ = pointer to destination block
144 *
145 * Returns: ---
146 *
147 * Use: Low-level block encryption and decryption.
148 */
149
150void desx_eblk(const desx_ctx *k, const uint32 *s, uint32 *d)
151{
152 uint32 x = s[0], y = s[1];
153 x ^= k->prea; y ^= k->preb;
154 DES_IP(x, y);
155 DES_EBLK(k->k.k, x, y, x, y);
156 DES_IPINV(x, y);
157 x ^= k->posta; y ^= k->postb;
158 d[0] = x, d[1] = y;
159}
160
161void desx_dblk(const desx_ctx *k, const uint32 *s, uint32 *d)
162{
163 uint32 x = s[0], y = s[1];
164 x ^= k->posta; y ^= k->postb;
165 DES_IP(x, y);
166 DES_DBLK(k->k.k, x, y, x, y);
167 DES_IPINV(x, y);
168 x ^= k->prea; y ^= k->preb;
169 d[0] = x, d[1] = y;
170}
171
172BLKC_TEST(DESX, desx)
173
174/*----- That's all, folks -------------------------------------------------*/