From e958b39042b67acaf2dc90a1f3d9bea51d7cebd8 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 19 Jul 2010 13:36:33 -0400 Subject: s3-auth: Move auth_ntlmssp wrappers in their own file Signed-off-by: Andrew Bartlett --- source3/libsmb/ntlmssp_wrap.c | 118 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 source3/libsmb/ntlmssp_wrap.c (limited to 'source3/libsmb') diff --git a/source3/libsmb/ntlmssp_wrap.c b/source3/libsmb/ntlmssp_wrap.c new file mode 100644 index 0000000000..8b8c199ff5 --- /dev/null +++ b/source3/libsmb/ntlmssp_wrap.c @@ -0,0 +1,118 @@ +/* + NLTMSSP wrappers + + Copyright (C) Andrew Tridgell 2001 + Copyright (C) Andrew Bartlett 2001-2003 + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ + +#include "includes.h" +#include "libcli/auth/ntlmssp.h" +#include "ntlmssp_wrap.h" + +NTSTATUS auth_ntlmssp_sign_packet(struct auth_ntlmssp_state *ans, + TALLOC_CTX *sig_mem_ctx, + const uint8_t *data, + size_t length, + const uint8_t *whole_pdu, + size_t pdu_length, + DATA_BLOB *sig) +{ + return ntlmssp_sign_packet(ans->ntlmssp_state, + sig_mem_ctx, + data, length, + whole_pdu, pdu_length, + sig); +} + +NTSTATUS auth_ntlmssp_check_packet(struct auth_ntlmssp_state *ans, + const uint8_t *data, + size_t length, + const uint8_t *whole_pdu, + size_t pdu_length, + const DATA_BLOB *sig) +{ + return ntlmssp_check_packet(ans->ntlmssp_state, + data, length, + whole_pdu, pdu_length, + sig); +} + +NTSTATUS auth_ntlmssp_seal_packet(struct auth_ntlmssp_state *ans, + TALLOC_CTX *sig_mem_ctx, + uint8_t *data, + size_t length, + const uint8_t *whole_pdu, + size_t pdu_length, + DATA_BLOB *sig) +{ + return ntlmssp_seal_packet(ans->ntlmssp_state, + sig_mem_ctx, + data, length, + whole_pdu, pdu_length, + sig); +} + +NTSTATUS auth_ntlmssp_unseal_packet(struct auth_ntlmssp_state *ans, + uint8_t *data, + size_t length, + const uint8_t *whole_pdu, + size_t pdu_length, + const DATA_BLOB *sig) +{ + return ntlmssp_unseal_packet(ans->ntlmssp_state, + data, length, + whole_pdu, pdu_length, + sig); +} + +bool auth_ntlmssp_negotiated_sign(struct auth_ntlmssp_state *ans) +{ + return ans->ntlmssp_state->neg_flags & NTLMSSP_NEGOTIATE_SIGN; +} + +bool auth_ntlmssp_negotiated_seal(struct auth_ntlmssp_state *ans) +{ + return ans->ntlmssp_state->neg_flags & NTLMSSP_NEGOTIATE_SEAL; +} + +struct ntlmssp_state *auth_ntlmssp_get_ntlmssp_state( + struct auth_ntlmssp_state *ans) +{ + return ans->ntlmssp_state; +} + +/* Needed for 'map to guest' and 'smb username' processing */ +const char *auth_ntlmssp_get_username(struct auth_ntlmssp_state *ans) +{ + return ans->ntlmssp_state->user; +} + +const char *auth_ntlmssp_get_domain(struct auth_ntlmssp_state *ans) +{ + return ans->ntlmssp_state->domain; +} + +const char *auth_ntlmssp_get_client(struct auth_ntlmssp_state *ans) +{ + return ans->ntlmssp_state->client.netbios_name; +} + +NTSTATUS auth_ntlmssp_update(struct auth_ntlmssp_state *ans, + const DATA_BLOB request, DATA_BLOB *reply) +{ + return ntlmssp_update(ans->ntlmssp_state, request, reply); +} + -- cgit