diff options
author | Simo Sorce <idra@samba.org> | 2010-07-19 13:36:33 -0400 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-07-20 15:52:31 +1000 |
commit | e958b39042b67acaf2dc90a1f3d9bea51d7cebd8 (patch) | |
tree | 2e705efba5cc861674194c3fbaabb19cbeabf41e /source3/include/proto.h | |
parent | a04bbd281c5b94166e23026ea06e98939250028c (diff) | |
download | samba-e958b39042b67acaf2dc90a1f3d9bea51d7cebd8.tar.gz samba-e958b39042b67acaf2dc90a1f3d9bea51d7cebd8.tar.bz2 samba-e958b39042b67acaf2dc90a1f3d9bea51d7cebd8.zip |
s3-auth: Move auth_ntlmssp wrappers in their own file
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 7c7611d672..2628763420 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -57,35 +57,10 @@ NTSTATUS auth_netlogond_init(void); NTSTATUS auth_ntlmssp_steal_server_info(TALLOC_CTX *mem_ctx, struct auth_ntlmssp_state *auth_ntlmssp_state, struct auth_serversupplied_info **server_info); -struct ntlmssp_state *auth_ntlmssp_get_ntlmssp_state(struct auth_ntlmssp_state *auth_ntlmssp_state); -const char *auth_ntlmssp_get_username(struct auth_ntlmssp_state *auth_ntlmssp_state); -const char *auth_ntlmssp_get_domain(struct auth_ntlmssp_state *auth_ntlmssp_state); -const char *auth_ntlmssp_get_client(struct auth_ntlmssp_state *auth_ntlmssp_state); -bool auth_ntlmssp_negotiated_sign(struct auth_ntlmssp_state *auth_ntlmssp_state); -bool auth_ntlmssp_negotiated_seal(struct auth_ntlmssp_state *auth_ntlmssp_state); void auth_ntlmssp_want_sign(struct auth_ntlmssp_state *auth_ntlmssp_state); void auth_ntlmssp_want_seal(struct auth_ntlmssp_state *auth_ntlmssp_state); NTSTATUS auth_ntlmssp_start(struct auth_ntlmssp_state **auth_ntlmssp_state); -NTSTATUS auth_ntlmssp_update(struct auth_ntlmssp_state *auth_ntlmssp_state, - const DATA_BLOB request, DATA_BLOB *reply) ; -NTSTATUS auth_ntlmssp_sign_packet(struct auth_ntlmssp_state *auth_ntlmssp_state, - TALLOC_CTX *sig_mem_ctx, - const uint8_t *data, size_t length, - const uint8_t *whole_pdu, size_t pdu_length, - DATA_BLOB *sig); -NTSTATUS auth_ntlmssp_check_packet(struct auth_ntlmssp_state *auth_ntlmssp_state, - const uint8_t *data, size_t length, - const uint8_t *whole_pdu, size_t pdu_length, - const DATA_BLOB *sig) ; -NTSTATUS auth_ntlmssp_seal_packet(struct auth_ntlmssp_state *auth_ntlmssp_state, - TALLOC_CTX *sig_mem_ctx, - uint8_t *data, size_t length, - const uint8_t *whole_pdu, size_t pdu_length, - DATA_BLOB *sig); -NTSTATUS auth_ntlmssp_unseal_packet(struct auth_ntlmssp_state *auth_ntlmssp_state, - uint8_t *data, size_t length, - const uint8_t *whole_pdu, size_t pdu_length, - const DATA_BLOB *sig); + /* The following definitions come from auth/auth_sam.c */ |