Remove unused cruft from des_int.h
authorTheodore Tso <tytso@mit.edu>
Fri, 3 Feb 1995 19:33:40 +0000 (19:33 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 3 Feb 1995 19:33:40 +0000 (19:33 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4901 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/crypto/des/ChangeLog
src/lib/crypto/des/des_int.h

index d8ce644866f69eef90b2737e53877092986ed984..c344fb9f492b453e70c38e5622a7d8e58e8cf544 100644 (file)
@@ -1,5 +1,7 @@
 Fri Feb  3 06:33:22 1995  Theodore Y. Ts'o  (tytso@dcl)
 
+       * des_int.h: Remove unused cruft from the file.
+
        * verify.c: Fix typo; "%02 X" --> "%02X"
 
 Wed Jan 25 20:04:39 1995  John Gilmore  (gnu at toad.com)
index ac922ae196ab8f534f86e2a1071f51979c1f83f7..10fbe16d3ff4df44389d199e6268bd747bb039a3 100644 (file)
 
 #include <krb5/mit-des.h>
 
-/*
- * number of iterations of the inner
- * loop of the DES algorithm.  The
- * standard is 16, but in case that is
- * too slow, we might do less.  Of
- * course, less also means less
- * security.
- */
-#define         AUTH_DES_ITER   16
-
-#ifdef  BITS32
-/* these are for 32 bit machines */
-
-typedef struct {
-    unsigned b0:6;
-    unsigned b1:6;
-    unsigned b2:6;
-    unsigned b3:6;
-    unsigned b4:6;
-    unsigned b5:2;
-}       sbox_in_a;
-
-typedef struct {
-    unsigned b5:4;
-    unsigned b6:6;
-    unsigned b7:6;
-}       sbox_in_b;
-
-typedef struct {
-    unsigned b0:4;
-    unsigned b1:4;
-    unsigned b2:4;
-    unsigned b3:4;
-    unsigned b4:4;
-    unsigned b5:4;
-    unsigned b6:4;
-    unsigned b7:4;
-}       sbox_out;
-
-#else  /*BITS32*/
-/* for sixteen bit machines */
-
-typedef struct {
-    unsigned b0:6;
-    unsigned b1:6;
-    unsigned b2:4;
-}       sbox_in_16_a;
-
-typedef struct {
-    unsigned b2:2;
-    unsigned b3:6;
-    unsigned b4:6;
-    unsigned b5:2;
-}       sbox_in_16_b;
-
-typedef struct {
-    unsigned b5:4;
-    unsigned b6:6;
-    unsigned b7:6;
-}       sbox_in_16_c;
-
-typedef struct {
-    unsigned b0:4;
-    unsigned b1:4;
-    unsigned b2:4;
-    unsigned b3:4;
-    unsigned b4:4;
-    unsigned b5:4;
-    unsigned b6:4;
-    unsigned b7:4;
-}       sbox_out;
-#endif /*BITS32*/
-
 /* cbc_cksum.c */
 extern krb5_error_code mit_des_cbc_checksum
     PROTOTYPE((krb5_pointer, size_t,krb5_pointer,size_t, krb5_checksum * ));