From: Ezra Peisach Date: Sat, 8 Jun 1996 14:42:30 +0000 (+0000) Subject: * configure.in: Remove kdb4 library usage X-Git-Tag: krb5-1.0-beta7~409 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=301f7dd78420df505d7c92149de054335bb0edad;p=krb5.git * configure.in: Remove kdb4 library usage * dumpv4.c (handle_one_key): Remove the temporary --with-kdb4 support. The kdb4 library was only used for decrypting the master key. Last July, the kdb4 code was conditionalized and the relevant lines were put into this source tree.... git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8281 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/admin/edit/ChangeLog b/src/admin/edit/ChangeLog index 59914b172..717817b8d 100644 --- a/src/admin/edit/ChangeLog +++ b/src/admin/edit/ChangeLog @@ -1,3 +1,10 @@ +Sat Jun 8 09:54:38 1996 Ezra Peisach + + * configure.in: Remove kdb4 library usage. + + * dumpv4.c (handle_one_key): Remove the temporary --with-kdb4 + support. + Thu May 2 22:16:01 1996 Ken Raeburn * ss_wrapper.c (main): Make sci_idx a global. This makes certain diff --git a/src/admin/edit/configure.in b/src/admin/edit/configure.in index ecf5dae89..be4c128fd 100644 --- a/src/admin/edit/configure.in +++ b/src/admin/edit/configure.in @@ -8,7 +8,6 @@ AC_HAVE_FUNCS(getcwd) SS_RULES USE_KADM_LIBRARY USE_KDB5_LIBRARY -WITH_KDB4(USE_KDB4_LIBRARY,AC_DEFINE(KDB4_DISABLE)) USE_KRB4_LIBRARY USE_SS_LIBRARY KRB5_LIBRARIES diff --git a/src/admin/edit/dumpv4.c b/src/admin/edit/dumpv4.c index 83b87b3f0..7943e1bc2 100644 --- a/src/admin/edit/dumpv4.c +++ b/src/admin/edit/dumpv4.c @@ -296,18 +296,12 @@ void dump_v4db(argc, argv) fprintf(f,"K M 255 1 1 0 "); -#ifndef KDB4_DISABLE - kdb_encrypt_key (arg.v4_master_key, v4key, - arg.v4_master_key, arg.v4_master_key_schedule, - ENCRYPT); -#else /* KDB4_DISABLE */ pcbc_encrypt((C_Block *) arg.v4_master_key, (C_Block *) v4key, (long) sizeof(C_Block), arg.v4_master_key_schedule, (C_Block *) arg.v4_master_key, ENCRYPT); -#endif /* KDB4_DISABLE */ for (i=0; i<8; i++) { fprintf(f, "%02x", ((unsigned char*)v4key)[i]); @@ -385,18 +379,12 @@ handle_one_key(arg, v5master, v5key, v4key) /* v4v5key.length = sizeof(v4key); */ memcpy(v4key, v5plainkey.contents, sizeof(des_cblock)); -#ifndef KDB4_DISABLE - kdb_encrypt_key (v4key, v4key, - arg->v4_master_key, arg->v4_master_key_schedule, - ENCRYPT); -#else /* KDB4_DISABLE */ pcbc_encrypt((C_Block *) v4key, (C_Block *) v4key, (long) sizeof(C_Block), arg->v4_master_key_schedule, (C_Block *) arg->v4_master_key, ENCRYPT); -#endif /* KDB4_DISABLE */ return 0; }