tea.c 7.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/* 
 * Cryptographic API.
 *
A
Aaron Grothe 已提交
4
 * TEA, XTEA, and XETA crypto alogrithms
L
Linus Torvalds 已提交
5 6 7 8
 *
 * The TEA and Xtended TEA algorithms were developed by David Wheeler 
 * and Roger Needham at the Computer Laboratory of Cambridge University.
 *
A
Aaron Grothe 已提交
9 10 11 12
 * Due to the order of evaluation in XTEA many people have incorrectly
 * implemented it.  XETA (XTEA in the wrong order), exists for
 * compatibility with these implementations.
 *
L
Linus Torvalds 已提交
13 14 15 16 17 18 19 20 21 22 23 24
 * Copyright (c) 2004 Aaron Grothe ajgrothe@yahoo.com
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 */

#include <linux/init.h>
#include <linux/module.h>
#include <linux/mm.h>
25
#include <asm/byteorder.h>
L
Linus Torvalds 已提交
26 27
#include <asm/scatterlist.h>
#include <linux/crypto.h>
28
#include <linux/types.h>
L
Linus Torvalds 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51

#define TEA_KEY_SIZE		16
#define TEA_BLOCK_SIZE		8
#define TEA_ROUNDS		32
#define TEA_DELTA		0x9e3779b9

#define XTEA_KEY_SIZE		16
#define XTEA_BLOCK_SIZE		8
#define XTEA_ROUNDS		32
#define XTEA_DELTA		0x9e3779b9

struct tea_ctx {
	u32 KEY[4];
};

struct xtea_ctx {
	u32 KEY[4];
};

static int tea_setkey(void *ctx_arg, const u8 *in_key,
                       unsigned int key_len, u32 *flags)
{ 
	struct tea_ctx *ctx = ctx_arg;
52
	const __le32 *key = (const __le32 *)in_key;
L
Linus Torvalds 已提交
53 54 55 56 57 58 59
	
	if (key_len != 16)
	{
		*flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
		return -EINVAL;
	}

60 61 62 63
	ctx->KEY[0] = le32_to_cpu(key[0]);
	ctx->KEY[1] = le32_to_cpu(key[1]);
	ctx->KEY[2] = le32_to_cpu(key[2]);
	ctx->KEY[3] = le32_to_cpu(key[3]);
L
Linus Torvalds 已提交
64 65 66 67 68 69 70 71 72 73 74

	return 0; 

}

static void tea_encrypt(void *ctx_arg, u8 *dst, const u8 *src)
{ 
	u32 y, z, n, sum = 0;
	u32 k0, k1, k2, k3;

	struct tea_ctx *ctx = ctx_arg;
75 76
	const __le32 *in = (const __le32 *)src;
	__le32 *out = (__le32 *)dst;
L
Linus Torvalds 已提交
77

78 79
	y = le32_to_cpu(in[0]);
	z = le32_to_cpu(in[1]);
L
Linus Torvalds 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93

	k0 = ctx->KEY[0];
	k1 = ctx->KEY[1];
	k2 = ctx->KEY[2];
	k3 = ctx->KEY[3];

	n = TEA_ROUNDS;

	while (n-- > 0) {
		sum += TEA_DELTA;
		y += ((z << 4) + k0) ^ (z + sum) ^ ((z >> 5) + k1);
		z += ((y << 4) + k2) ^ (y + sum) ^ ((y >> 5) + k3);
	}
	
94 95
	out[0] = cpu_to_le32(y);
	out[1] = cpu_to_le32(z);
L
Linus Torvalds 已提交
96 97 98 99 100 101 102
}

static void tea_decrypt(void *ctx_arg, u8 *dst, const u8 *src)
{ 
	u32 y, z, n, sum;
	u32 k0, k1, k2, k3;
	struct tea_ctx *ctx = ctx_arg;
103 104
	const __le32 *in = (const __le32 *)src;
	__le32 *out = (__le32 *)dst;
L
Linus Torvalds 已提交
105

106 107
	y = le32_to_cpu(in[0]);
	z = le32_to_cpu(in[1]);
L
Linus Torvalds 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123

	k0 = ctx->KEY[0];
	k1 = ctx->KEY[1];
	k2 = ctx->KEY[2];
	k3 = ctx->KEY[3];

	sum = TEA_DELTA << 5;

	n = TEA_ROUNDS;

	while (n-- > 0) {
		z -= ((y << 4) + k2) ^ (y + sum) ^ ((y >> 5) + k3);
		y -= ((z << 4) + k0) ^ (z + sum) ^ ((z >> 5) + k1);
		sum -= TEA_DELTA;
	}
	
124 125
	out[0] = cpu_to_le32(y);
	out[1] = cpu_to_le32(z);
L
Linus Torvalds 已提交
126 127 128 129 130 131
}

static int xtea_setkey(void *ctx_arg, const u8 *in_key,
                       unsigned int key_len, u32 *flags)
{ 
	struct xtea_ctx *ctx = ctx_arg;
132
	const __le32 *key = (const __le32 *)in_key;
L
Linus Torvalds 已提交
133 134 135 136 137 138 139
	
	if (key_len != 16)
	{
		*flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
		return -EINVAL;
	}

140 141 142 143
	ctx->KEY[0] = le32_to_cpu(key[0]);
	ctx->KEY[1] = le32_to_cpu(key[1]);
	ctx->KEY[2] = le32_to_cpu(key[2]);
	ctx->KEY[3] = le32_to_cpu(key[3]);
L
Linus Torvalds 已提交
144 145 146 147 148 149 150 151 152 153 154

	return 0; 

}

static void xtea_encrypt(void *ctx_arg, u8 *dst, const u8 *src)
{ 
	u32 y, z, sum = 0;
	u32 limit = XTEA_DELTA * XTEA_ROUNDS;

	struct xtea_ctx *ctx = ctx_arg;
155 156
	const __le32 *in = (const __le32 *)src;
	__le32 *out = (__le32 *)dst;
L
Linus Torvalds 已提交
157

158 159
	y = le32_to_cpu(in[0]);
	z = le32_to_cpu(in[1]);
L
Linus Torvalds 已提交
160 161

	while (sum != limit) {
A
Aaron Grothe 已提交
162
		y += ((z << 4 ^ z >> 5) + z) ^ (sum + ctx->KEY[sum&3]); 
L
Linus Torvalds 已提交
163
		sum += XTEA_DELTA;
A
Aaron Grothe 已提交
164
		z += ((y << 4 ^ y >> 5) + y) ^ (sum + ctx->KEY[sum>>11 &3]); 
L
Linus Torvalds 已提交
165 166
	}
	
167 168
	out[0] = cpu_to_le32(y);
	out[1] = cpu_to_le32(z);
L
Linus Torvalds 已提交
169 170 171 172 173 174
}

static void xtea_decrypt(void *ctx_arg, u8 *dst, const u8 *src)
{ 
	u32 y, z, sum;
	struct tea_ctx *ctx = ctx_arg;
175 176
	const __le32 *in = (const __le32 *)src;
	__le32 *out = (__le32 *)dst;
L
Linus Torvalds 已提交
177

178 179
	y = le32_to_cpu(in[0]);
	z = le32_to_cpu(in[1]);
L
Linus Torvalds 已提交
180 181 182

	sum = XTEA_DELTA * XTEA_ROUNDS;

A
Aaron Grothe 已提交
183 184 185 186 187 188
	while (sum) {
		z -= ((y << 4 ^ y >> 5) + y) ^ (sum + ctx->KEY[sum>>11 & 3]);
		sum -= XTEA_DELTA;
		y -= ((z << 4 ^ z >> 5) + z) ^ (sum + ctx->KEY[sum & 3]);
	}
	
189 190
	out[0] = cpu_to_le32(y);
	out[1] = cpu_to_le32(z);
A
Aaron Grothe 已提交
191 192 193 194 195 196 197 198 199
}


static void xeta_encrypt(void *ctx_arg, u8 *dst, const u8 *src)
{ 
	u32 y, z, sum = 0;
	u32 limit = XTEA_DELTA * XTEA_ROUNDS;

	struct xtea_ctx *ctx = ctx_arg;
200 201
	const __le32 *in = (const __le32 *)src;
	__le32 *out = (__le32 *)dst;
A
Aaron Grothe 已提交
202

203 204
	y = le32_to_cpu(in[0]);
	z = le32_to_cpu(in[1]);
A
Aaron Grothe 已提交
205 206 207 208 209 210 211

	while (sum != limit) {
		y += (z << 4 ^ z >> 5) + (z ^ sum) + ctx->KEY[sum&3];
		sum += XTEA_DELTA;
		z += (y << 4 ^ y >> 5) + (y ^ sum) + ctx->KEY[sum>>11 &3];
	}
	
212 213
	out[0] = cpu_to_le32(y);
	out[1] = cpu_to_le32(z);
A
Aaron Grothe 已提交
214 215 216 217 218 219
}

static void xeta_decrypt(void *ctx_arg, u8 *dst, const u8 *src)
{ 
	u32 y, z, sum;
	struct tea_ctx *ctx = ctx_arg;
220 221
	const __le32 *in = (const __le32 *)src;
	__le32 *out = (__le32 *)dst;
A
Aaron Grothe 已提交
222

223 224
	y = le32_to_cpu(in[0]);
	z = le32_to_cpu(in[1]);
A
Aaron Grothe 已提交
225 226 227

	sum = XTEA_DELTA * XTEA_ROUNDS;

L
Linus Torvalds 已提交
228 229 230 231 232 233
	while (sum) {
		z -= (y << 4 ^ y >> 5) + (y ^ sum) + ctx->KEY[sum>>11 & 3];
		sum -= XTEA_DELTA;
		y -= (z << 4 ^ z >> 5) + (z ^ sum) + ctx->KEY[sum & 3];
	}
	
234 235
	out[0] = cpu_to_le32(y);
	out[1] = cpu_to_le32(z);
L
Linus Torvalds 已提交
236 237 238 239 240 241 242
}

static struct crypto_alg tea_alg = {
	.cra_name		=	"tea",
	.cra_flags		=	CRYPTO_ALG_TYPE_CIPHER,
	.cra_blocksize		=	TEA_BLOCK_SIZE,
	.cra_ctxsize		=	sizeof (struct tea_ctx),
243
	.cra_alignmask		=	3,
L
Linus Torvalds 已提交
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
	.cra_module		=	THIS_MODULE,
	.cra_list		=	LIST_HEAD_INIT(tea_alg.cra_list),
	.cra_u			=	{ .cipher = {
	.cia_min_keysize	=	TEA_KEY_SIZE,
	.cia_max_keysize	=	TEA_KEY_SIZE,
	.cia_setkey		= 	tea_setkey,
	.cia_encrypt		=	tea_encrypt,
	.cia_decrypt		=	tea_decrypt } }
};

static struct crypto_alg xtea_alg = {
	.cra_name		=	"xtea",
	.cra_flags		=	CRYPTO_ALG_TYPE_CIPHER,
	.cra_blocksize		=	XTEA_BLOCK_SIZE,
	.cra_ctxsize		=	sizeof (struct xtea_ctx),
259
	.cra_alignmask		=	3,
L
Linus Torvalds 已提交
260 261 262 263 264 265 266 267 268 269
	.cra_module		=	THIS_MODULE,
	.cra_list		=	LIST_HEAD_INIT(xtea_alg.cra_list),
	.cra_u			=	{ .cipher = {
	.cia_min_keysize	=	XTEA_KEY_SIZE,
	.cia_max_keysize	=	XTEA_KEY_SIZE,
	.cia_setkey		= 	xtea_setkey,
	.cia_encrypt		=	xtea_encrypt,
	.cia_decrypt		=	xtea_decrypt } }
};

A
Aaron Grothe 已提交
270 271 272 273 274
static struct crypto_alg xeta_alg = {
	.cra_name		=	"xeta",
	.cra_flags		=	CRYPTO_ALG_TYPE_CIPHER,
	.cra_blocksize		=	XTEA_BLOCK_SIZE,
	.cra_ctxsize		=	sizeof (struct xtea_ctx),
275
	.cra_alignmask		=	3,
A
Aaron Grothe 已提交
276 277 278 279 280 281 282 283 284 285
	.cra_module		=	THIS_MODULE,
	.cra_list		=	LIST_HEAD_INIT(xtea_alg.cra_list),
	.cra_u			=	{ .cipher = {
	.cia_min_keysize	=	XTEA_KEY_SIZE,
	.cia_max_keysize	=	XTEA_KEY_SIZE,
	.cia_setkey		= 	xtea_setkey,
	.cia_encrypt		=	xeta_encrypt,
	.cia_decrypt		=	xeta_decrypt } }
};

L
Linus Torvalds 已提交
286 287 288 289 290 291 292 293 294 295 296 297 298 299
static int __init init(void)
{
	int ret = 0;
	
	ret = crypto_register_alg(&tea_alg);
	if (ret < 0)
		goto out;

	ret = crypto_register_alg(&xtea_alg);
	if (ret < 0) {
		crypto_unregister_alg(&tea_alg);
		goto out;
	}

A
Aaron Grothe 已提交
300 301 302 303 304 305 306
	ret = crypto_register_alg(&xeta_alg);
	if (ret < 0) {
		crypto_unregister_alg(&tea_alg);
		crypto_unregister_alg(&xtea_alg);
		goto out;
	}

L
Linus Torvalds 已提交
307 308 309 310 311 312 313 314
out:	
	return ret;
}

static void __exit fini(void)
{
	crypto_unregister_alg(&tea_alg);
	crypto_unregister_alg(&xtea_alg);
A
Aaron Grothe 已提交
315
	crypto_unregister_alg(&xeta_alg);
L
Linus Torvalds 已提交
316 317 318
}

MODULE_ALIAS("xtea");
A
Aaron Grothe 已提交
319
MODULE_ALIAS("xeta");
L
Linus Torvalds 已提交
320 321 322 323 324

module_init(init);
module_exit(fini);

MODULE_LICENSE("GPL");
A
Aaron Grothe 已提交
325
MODULE_DESCRIPTION("TEA, XTEA & XETA Cryptographic Algorithms");