3 * $Id: idea.h,v 1.4 2004/04/08 01:36:15 mdw Exp $
5 * Implementation of the IDEA cipher
7 * (c) 1999 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 /*----- Notes on the IDEA block cipher ------------------------------------*
32 * IDEA was invented by James Massey and Xuejia Lai. The fundamental idea
33 * underlying the cipher is combining incompatible group operations. The
34 * algorithm's main claim to fame is that it is the symmetric cipher in PGP
37 * The IDEA algorithm is allegedly patented by Ascom Tech A.G., even in the
38 * UK and Europe. Ascom are willing to grant licences for use in software
39 * which forbids commercial use, but this is not compatible with Free
40 * Software Foundation ideology. The author recommends against the use of
41 * the IDEA cipher entirely. Blowfish is conceptually simpler, appears more
42 * concervative, offers a larger keyspace, runs faster, and is in the public
46 #ifndef CATACOMB_IDEA_H
47 #define CATACOMB_IDEA_H
53 /*----- Header files ------------------------------------------------------*/
57 #include <mLib/bits.h>
59 /*----- Magical numbers ---------------------------------------------------*/
63 #define IDEA_CLASS (N, B, 64)
65 extern const octet idea_keysz[];
67 /*----- Data structures ---------------------------------------------------*/
69 typedef struct idea_ctx {
74 /*----- Functions provided ------------------------------------------------*/
76 /* --- @idea_init@ --- *
78 * Arguments: @idea_ctx *k@ = pointer to key block
79 * @const void *buf@ = pointer to key buffer
80 * @size_t sz@ = size of key material
84 * Use: Initializes an IDEA key buffer. The buffer must be exactly
85 * 16 bytes in size, because IDEA is only defined with a key
89 extern void idea_init(idea_ctx */*k*/, const void */*buf*/, size_t /*sz*/);
91 /* --- @idea_eblk@, @idea_dblk@ --- *
93 * Arguments: @const idea_ctx *k@ = pointer to a key block
94 * @const uint32 s[2]@ = pointer to source block
95 * @uint32 d[2]@ = pointer to destination block
99 * Use: Low-level block encryption and decryption.
102 extern void idea_eblk(const idea_ctx */*k*/,
103 const uint32 */*s*/, uint32 */*d*/);
104 extern void idea_dblk(const idea_ctx */*k*/,
105 const uint32 */*s*/, uint32 */*d*/);
107 /*----- That's all, folks -------------------------------------------------*/