diff options
-rw-r--r-- | source3/lib/util_str.c | 11 | ||||
-rw-r--r-- | source3/utils/ntlm_auth.c | 6 |
2 files changed, 11 insertions, 6 deletions
diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c index 2be8b7eb64..e4b07a4b73 100644 --- a/source3/lib/util_str.c +++ b/source3/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/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c index 09306adc78..c926d07698 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/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); |