+Fri Sep 15 14:21:25 1995 Theodore Y. Ts'o <tytso@dcl>
+
+ * cpw.c: Add DES_CBC_MD5 and DES_CBC_CRC with the V4 salt as
+ default key/salt tuples to be added. (Once proven's DES_*
+ folding code is implemented, we can shorten this list.)
+ Eventually, this list should be read in from kdc.conf.
+
Thu Sep 7 20:41:24 1995 Ezra Peisach <epeisach@kangaroo.mit.edu>
* loadv4.c (load_v4db): Provide a dummy routine if krb4
extern krb5_boolean dbactive;
extern FILE *scriptfile;
-static krb5_key_salt_tuple ks_tuple_rnd_def[] = {{ ENCTYPE_DES_CBC_CRC, 0 }};
-static int ks_tuple_rnd_def_count = 1;
+/*
+ * XXX This realy should be configured from kdc.conf
+ */
+static krb5_key_salt_tuple ks_tuple_rnd_def[] =
+ {{ ENCTYPE_DES_CBC_CRC, 0 },
+ { ENCTYPE_DES_CBC_MD5, 0 },
+ { ENCTYPE_DES_CBC_CRC, KRB5_KDB_SALTTYPE_V4}};
+ { ENCTYPE_DES_CBC_MD5, KRB5_KDB_SALTTYPE_V4}};
+static int ks_tuple_rnd_def_count = 4;
static void
enter_rnd_key(argc, argv, entry)