summaryrefslogtreecommitdiff
path: root/source3/smbd/password.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/smbd/password.c')
-rw-r--r--source3/smbd/password.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/smbd/password.c b/source3/smbd/password.c
index bbd9f8b849..fe3ac5c765 100644
--- a/source3/smbd/password.c
+++ b/source3/smbd/password.c
@@ -45,6 +45,12 @@ Get the next challenge value - no repeats.
********************************************************************/
void generate_next_challenge(char *challenge)
{
+#if 0
+ /*
+ * Leave this ifdef'd out while we test
+ * the new crypto random number generator.
+ * JRA.
+ */
unsigned char buf[16];
static int counter = 0;
struct timeval tval;
@@ -59,7 +65,11 @@ void generate_next_challenge(char *challenge)
/* mash it up with md4 */
mdfour(buf, (unsigned char *)challenge, 8);
+#else
+ unsigned char buf[8];
+ generate_random_buffer(buf,8,False);
+#endif
memcpy(saved_challenge, buf, 8);
memcpy(challenge,buf,8);
challenge_sent = True;