/usr/src/openafs-1.6.15/include/rx/fcrypt.h is in openafs-modules-dkms 1.6.15-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | /*
* Copyright 2000, International Business Machines Corporation and others.
* All Rights Reserved.
*
* This software has been released under the terms of the IBM Public
* License. For details, see the LICENSE file in the top-level source
* directory or online at http://www.openafs.org/dl/license10.html
*/
/*
* Revision 2.1 90/08/07 19:33:16
* Start with clean version to sync test and dev trees.
*
*/
#ifndef OPENAFS_RXKAD_FCRYPT_H
#define OPENAFS_RXKAD_FCRYPT_H
#ifdef ENCRYPTIONBLOCKSIZE
#undef ENCRYPTIONBLOCKSIZE
#endif
#define ENCRYPTIONBLOCKSIZE 8
typedef afs_int32 fc_InitializationVector[ENCRYPTIONBLOCKSIZE / 4];
#ifdef MAXROUNDS
#undef MAXROUNDS
#endif
#define MAXROUNDS 16
typedef afs_int32 fc_KeySchedule[MAXROUNDS];
#ifndef ENCRYPT
#define ENCRYPT 1
#define DECRYPT 0
#endif
#endif
|