From 0693b9e79fabd58491f8aaec11dbbc71fab34f80 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 7 Apr 2004 09:27:50 +0000 Subject: [PATCH] r104: Fix ntlm_auth by adding the new strhex_to_data_blob() call. Andrew Bartlett --- source/lib/util_str.c | 11 +++++++++++ source/utils/ntlm_auth.c | 6 ------ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/source/lib/util_str.c b/source/lib/util_str.c index 2be8b7eb64c..e4b07a4b731 100644 --- a/source/lib/util_str.c +++ b/source/lib/util_str.c @@ -794,6 +794,17 @@ size_t strhex_to_str(char *p, size_t len, const char *strhex) return num_chars; } +DATA_BLOB strhex_to_data_blob(const char *strhex) +{ + DATA_BLOB ret_blob = data_blob(NULL, strlen(strhex)/2+1); + + ret_blob.length = strhex_to_str(ret_blob.data, + strlen(strhex), + strhex); + + return ret_blob; +} + /** * Routine to print a buffer as HEX digits, into an allocated string. */ diff --git a/source/utils/ntlm_auth.c b/source/utils/ntlm_auth.c index 09306adc78e..c926d076980 100644 --- a/source/utils/ntlm_auth.c +++ b/source/utils/ntlm_auth.c @@ -2166,18 +2166,14 @@ enum { while((opt = poptGetNextOpt(pc)) != -1) { switch (opt) { case OPT_CHALLENGE: -#if 0 /* Mr Bartlett FIX THE BUILD ! */ opt_challenge = strhex_to_data_blob(hex_challenge); -#endif if (opt_challenge.length != 8) { x_fprintf(x_stderr, "hex decode of %s failed!\n", hex_challenge); exit(1); } break; case OPT_LM: -#if 0 /* Mr Bartlett FIX THE BUILD ! */ opt_lm_response = strhex_to_data_blob(hex_lm_response); -#endif if (opt_lm_response.length != 24) { x_fprintf(x_stderr, "hex decode of %s failed!\n", hex_lm_response); exit(1); @@ -2185,9 +2181,7 @@ enum { break; case OPT_NT: -#if 0 /* Mr Bartlett FIX THE BUILD ! */ opt_nt_response = strhex_to_data_blob(hex_nt_response); -#endif if (opt_nt_response.length < 24) { x_fprintf(x_stderr, "hex decode of %s failed!\n", hex_nt_response); exit(1); -- 2.11.4.GIT