diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-05-22 12:56:32 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-05-22 12:56:32 +0000 |
commit | 2e136b4438379c0dea33898c24bf2fbf670b8770 (patch) | |
tree | e585f5bd6799143beb1d3e57f70388fc6c12538b /source3 | |
parent | b87eee983612c0d21b0c6f1346ba15ace797fe9e (diff) | |
download | samba-2e136b4438379c0dea33898c24bf2fbf670b8770.tar.gz samba-2e136b4438379c0dea33898c24bf2fbf670b8770.tar.bz2 samba-2e136b4438379c0dea33898c24bf2fbf670b8770.zip |
Nobody uses this function, and there really doesn't seem much point to
it, so we may as well reduce the complexity.
Andrew Bartlett
(This used to be commit 31e074cea50111a150db220603c3cfccaaf4339c)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/auth/auth.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/source3/auth/auth.c b/source3/auth/auth.c index 148826fa6e..c40cef5519 100644 --- a/source3/auth/auth.c +++ b/source3/auth/auth.c @@ -422,26 +422,6 @@ NTSTATUS make_auth_context_subsystem(struct auth_context **auth_context) } /*************************************************************************** - Make a auth_info struct with a random challenge -***************************************************************************/ - -NTSTATUS make_auth_context_random(struct auth_context **auth_context) -{ - uchar chal[8]; - NTSTATUS nt_status; - if (!NT_STATUS_IS_OK(nt_status = make_auth_context_subsystem(auth_context))) { - return nt_status; - } - - generate_random_buffer(chal, sizeof(chal), False); - (*auth_context)->challenge = data_blob(chal, sizeof(chal)); - - (*auth_context)->challenge_set_by = "random"; - - return nt_status; -} - -/*************************************************************************** Make a auth_info struct with a fixed challenge ***************************************************************************/ |