blob: 359ae084275cbb2610d66c4d52d653c9564c2c3e [file] [log] [blame]
Joachim Fritschieaf44082006-06-20 21:12:02 +10001/*
Sebastian Siewior15e7b442008-01-14 17:07:57 +11002 * Glue Code for assembler optimized version of TWOFISH
Joachim Fritschieaf44082006-06-20 21:12:02 +10003 *
4 * Originally Twofish for GPG
5 * By Matthew Skala <mskala@ansuz.sooke.bc.ca>, July 26, 1998
6 * 256-bit key length added March 20, 1999
7 * Some modifications to reduce the text size by Werner Koch, April, 1998
8 * Ported to the kerneli patch by Marc Mutz <Marc@Mutz.com>
9 * Ported to CryptoAPI by Colin Slater <hoho@tacomeat.net>
10 *
11 * The original author has disclaimed all copyright interest in this
12 * code and thus put it in the public domain. The subsequent authors
13 * have put this under the GNU General Public License.
14 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
28 * USA
29 *
30 * This code is a "clean room" implementation, written from the paper
31 * _Twofish: A 128-Bit Block Cipher_ by Bruce Schneier, John Kelsey,
32 * Doug Whiting, David Wagner, Chris Hall, and Niels Ferguson, available
33 * through http://www.counterpane.com/twofish.html
34 *
35 * For background information on multiplication in finite fields, used for
36 * the matrix operations in the key schedule, see the book _Contemporary
37 * Abstract Algebra_ by Joseph A. Gallian, especially chapter 22 in the
38 * Third Edition.
39 */
40
41#include <crypto/twofish.h>
42#include <linux/crypto.h>
43#include <linux/init.h>
Joachim Fritschieaf44082006-06-20 21:12:02 +100044#include <linux/module.h>
45#include <linux/types.h>
46
Jussi Kivilinna91d41f12011-09-26 16:47:20 +030047asmlinkage void twofish_enc_blk(struct twofish_ctx *ctx, u8 *dst,
48 const u8 *src);
49EXPORT_SYMBOL_GPL(twofish_enc_blk);
50asmlinkage void twofish_dec_blk(struct twofish_ctx *ctx, u8 *dst,
51 const u8 *src);
52EXPORT_SYMBOL_GPL(twofish_dec_blk);
Joachim Fritschieaf44082006-06-20 21:12:02 +100053
54static void twofish_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
55{
Jussi Kivilinna91d41f12011-09-26 16:47:20 +030056 twofish_enc_blk(crypto_tfm_ctx(tfm), dst, src);
Joachim Fritschieaf44082006-06-20 21:12:02 +100057}
58
59static void twofish_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
60{
Jussi Kivilinna91d41f12011-09-26 16:47:20 +030061 twofish_dec_blk(crypto_tfm_ctx(tfm), dst, src);
Joachim Fritschieaf44082006-06-20 21:12:02 +100062}
63
64static struct crypto_alg alg = {
65 .cra_name = "twofish",
Sebastian Siewior15e7b442008-01-14 17:07:57 +110066 .cra_driver_name = "twofish-asm",
Joachim Fritschieaf44082006-06-20 21:12:02 +100067 .cra_priority = 200,
68 .cra_flags = CRYPTO_ALG_TYPE_CIPHER,
69 .cra_blocksize = TF_BLOCK_SIZE,
70 .cra_ctxsize = sizeof(struct twofish_ctx),
Jussi Kivilinna89404262012-02-17 22:49:03 +020071 .cra_alignmask = 0,
Joachim Fritschieaf44082006-06-20 21:12:02 +100072 .cra_module = THIS_MODULE,
73 .cra_list = LIST_HEAD_INIT(alg.cra_list),
74 .cra_u = {
75 .cipher = {
76 .cia_min_keysize = TF_MIN_KEY_SIZE,
77 .cia_max_keysize = TF_MAX_KEY_SIZE,
78 .cia_setkey = twofish_setkey,
79 .cia_encrypt = twofish_encrypt,
80 .cia_decrypt = twofish_decrypt
81 }
82 }
83};
84
85static int __init init(void)
86{
87 return crypto_register_alg(&alg);
88}
89
90static void __exit fini(void)
91{
92 crypto_unregister_alg(&alg);
93}
94
95module_init(init);
96module_exit(fini);
97
98MODULE_LICENSE("GPL");
Sebastian Siewior15e7b442008-01-14 17:07:57 +110099MODULE_DESCRIPTION ("Twofish Cipher Algorithm, asm optimized");
Joachim Fritschieaf44082006-06-20 21:12:02 +1000100MODULE_ALIAS("twofish");
Sebastian Siewior15e7b442008-01-14 17:07:57 +1100101MODULE_ALIAS("twofish-asm");