3 * $Id: icrypt.h,v 1.3 1997/09/26 09:14:58 mdw Exp $
5 * Higher level encryption functions
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 --------------------------------------------------*
32 * Revision 1.3 1997/09/26 09:14:58 mdw
33 * Merged blowfish branch into trunk.
35 * Revision 1.2.2.1 1997/09/26 09:08:08 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.2 1997/08/04 10:24:22 mdw
41 * Sources placed under CVS control.
43 * Revision 1.1 1997/07/21 13:47:49 mdw
55 /*----- Required headers --------------------------------------------------*/
60 # include "blowfish.h"
67 /*----- Type definitions --------------------------------------------------*/
69 /* --- @icrypt_job@ --- */
71 typedef struct icrypt_job {
72 blowfish_key k; /* Key for en/decrypting */
73 int i; /* Index into the IV buffer */
74 unsigned char iv[BLOWFISH_BLKSIZE]; /* IV bytes for encrypting */
77 /*----- Functions provided ------------------------------------------------*/
79 extern void icrypt_init(icrypt_job */*j*/,
82 const unsigned char */*iv*/);
84 /* --- @icrypt_encrypt@ --- *
86 * Arguments: @icrypt_job *j@ = job handle
87 * @const void *src@ = pointer to source buffer
88 * @void *dest@ = pointer to destination buffer
89 * @size_t sz@ = size of buffers to handle
93 * Use: Encrypts data from the source to the destination, using the
94 * key attached to the job handle.
97 extern void icrypt_encrypt(icrypt_job */*j*/, const void */*src*/,
98 void */*dest*/, size_t /*sz*/);
100 /* --- @icrypt_decrypt@ --- *
102 * Arguments: @icrypt_job *j@ = job handle
103 * @const void *src@ = pointer to source buffer
104 * @void *dest@ = pointer to destination buffer
105 * @size_t sz@ = size of buffers to handle
109 * Use: Decrypts data from the source to the destination, using
110 * the key attached to the job handle.
113 extern void icrypt_decrypt(icrypt_job */*j*/, const void */*src*/,
114 void */*dest*/, size_t /*sz*/);
116 /* --- @icrypt_reset@ --- *
118 * Arguments: @icrypt_job *j@ = pointer to job context block
119 * @unsigned char *k@ = pointer to key data, or zero for
121 * @size_t sz@ = size of the key in bytes
122 * @const unsigned char *iv@ = pointer to IV, or zero
126 * Use: Alters the context block. This can be used after recovery
127 * of a session key, for example.
130 extern void icrypt_reset(icrypt_job */*j*/,
131 unsigned char */*k*/,
133 const unsigned char */*iv*/);
135 /* --- @icrypt_saveIV@ --- *
137 * Arguments: @icrypt_job *j@ = pointer to job context block
138 * @unsigned char *iv@ = where to store the IV
142 * Use: Writes out the job's IV after munging it a little.
145 extern void icrypt_saveIV(icrypt_job */*j*/, unsigned char */*iv*/);
147 /*----- That's all, folks -------------------------------------------------*/