From 4ac442a8844a12ddc41893f0543ebb06c3654716 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Sat, 3 Feb 2007 07:06:24 +0000 Subject: [PATCH] Remove debug output. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@20149 ec53bebd-3082-4978-b11e-865c3cabbd6b --- kdc/digest.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/kdc/digest.c b/kdc/digest.c index 7c31402b2..2cf3641cd 100644 --- a/kdc/digest.c +++ b/kdc/digest.c @@ -150,7 +150,6 @@ static const unsigned char ms_chap_v2_magic2[41] = { 0x65, 0x20, 0x69, 0x74, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6F, 0x6E }; - static const unsigned char ms_rfc3079_magic1[27] = { 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x4d, 0x50, 0x50, 0x45, 0x20, 0x4d, @@ -892,14 +891,6 @@ _kdc_do_digest(krb5_context context, SHA1_Update(&ctx, ms_chap_v2_magic1,sizeof(ms_chap_v2_magic1)); SHA1_Final(md, &ctx); - { - char *foo; - hex_encode(challange, 8, &foo); - kdc_log(context, config, 0, - "MS-CHAP-V2 challange %s", foo); - free(foo); - } - SHA1_Init(&ctx); SHA1_Update(&ctx, md, sizeof(md)); SHA1_Update(&ctx, challange, 8);