3 * $Id: blowfish.h,v 1.4 1997/09/26 09:14:57 mdw Exp $
5 * Blowfish encryption routines
7 * (c) 1997 Mark Wooding
10 /*----- Licensing notice --------------------------------------------------*
12 * This file is part of `become'
14 * `Become' is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * `Become' 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 General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with `become'; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 /*----- Revision history --------------------------------------------------*
31 * $Log: blowfish.h,v $
32 * Revision 1.4 1997/09/26 09:14:57 mdw
33 * Merged blowfish branch into trunk.
35 * Revision 1.3.2.1 1997/09/26 09:07:59 mdw
36 * Use the Blowfish encryption algorithm instead of IDEA. This is partly
37 * because I prefer Blowfish (without any particularly strong evidence) but
38 * mainly because IDEA is patented and Blowfish isn't.
40 * Revision 1.3 1997/08/07 09:43:20 mdw
41 * Fix address of the FSF.
43 * Revision 1.2 1997/08/04 10:24:20 mdw
44 * Sources placed under CVS control.
46 * Revision 1.1 1997/07/21 13:47:53 mdw
58 /*----- Required headers --------------------------------------------------*/
64 /*----- Type definitions --------------------------------------------------*/
66 /* --- A blowfish expanded key --- */
68 typedef struct blowfish_key {
76 /* --- Size of a blowfish block --- */
78 #define BLOWFISH_BLKSIZE (8u)
80 /*----- Functions provided ------------------------------------------------*/
82 /* --- @blowfish_encrypt@ --- *
84 * Arguments: @const blowfish_key *k@ = pointer to key block
85 * @const voic *from@ = block to encrypt from
86 * @void *to@ = block to encrypt to
90 * Use: Encrypts a block using the Blowfish algorithm.
93 extern void blowfish_encrypt(const blowfish_key */*k*/,
94 const void */*from*/, void */*to*/);
97 /* --- @blowfish_decrypt@ --- *
99 * Arguments: @const blowfish_key *k@ = pointer to key block
100 * @const void *from@ = block to decrypt from
101 * @void *to@ = block to decrypt to
105 * Use: Decrypts a block using the Blowfish algorithm.
108 extern void blowfish_decrypt(const blowfish_key */*k*/,
109 const void */*from*/, void */*to*/);
111 /* --- @blowfish_setKey@ --- *
113 * Arguments: @blowfish_key *kb@ = pointer to key block to fill
114 * @void *k@ = pointer to key data
115 * @size_t sz@ = length of data in bytes
119 * Use: Expands a key which isn't represented as a number of whole
120 * words. This is a nonstandard extension, although it can be
121 * used to support 40-bit keys, which some governments might
122 * find more palatable than 160-bit (or 448-bit!) keys.
125 extern void blowfish_setKey(blowfish_key */*kb*/,
126 const void */*k*/, size_t /*sz*/);
128 /*----- That's all, folks -------------------------------------------------*/