Standardize License information
[openafs.git] / src / rxkad / domestic / fcrypt.h
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11  * Revision 2.1  90/08/07  19:33:16
12  * Start with clean version to sync test and dev trees.
13  *
14  */
15
16 #ifndef TRANSARC_RXKAD_FCRYPT_H
17 #define TRANSARC_RXKAD_FCRYPT_H
18
19 #define ENCRYPTIONBLOCKSIZE 8
20
21 typedef afs_int32 fc_InitializationVector[ENCRYPTIONBLOCKSIZE/4];
22
23 #define MAXROUNDS 16
24 typedef afs_int32 fc_KeySchedule[MAXROUNDS];
25
26 #ifndef ENCRYPT
27 #define ENCRYPT 1
28 #define DECRYPT 0
29 #endif
30
31 #endif