+
+Thu Jul 27 15:15:46 EDT 1995 Paul Park (pjpark@mit.edu)
+ * configure.in - Add --enable-{des-cbc-md5,des-cbc-crc,raw-des-cbc,
+ des-cbc-cksum,crc32,rsa-md4,rsa-md5} which set the appropriate
+ preprocessor flags which used to be set in k5-config.h.
+ * cryptoconf.c - Set the KEYTYPE_DES entry to the DES-CBC-MD5 entry
+ if enabled, then the DES-CBC-CRC entry, if enabled, then to
+ null.
+
Fri Jun 23 12:16:52 1995 Sam Hartman <hartmans@tardis.MIT.EDU>
* configure.in: krb5_cv_staticlibs_enabled, not
krb5_cs_table_entry * NEAR krb5_keytype_array[] = {
0, /* KEYTYPE_NULL */
+#if defined(PROVIDE_DES_CBC_MD5)
+ DES_CBC_MD5_CSENTRY /* KEYTYPE_DES */
+#elif defined(PROVIDE_DES_CBC_CRC)
DES_CBC_CRC_CSENTRY /* KEYTYPE_DES */
+#else /* !PROVIDE_DES_CBC_MD5 && !PROVIDE_DES_CBC_CRC */
+ 0
+#endif /* !PROVIDE_DES_CBC_MD5 && !PROVIDE_DES_CBC_CRC */
};
int krb5_max_keytype = sizeof(krb5_keytype_array)/sizeof(krb5_keytype_array[0]) - 1;