summaryrefslogtreecommitdiff
path: root/libcli/auth/schannel_state.h
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2010-02-18 14:44:09 -0500
committerSimo Sorce <idra@samba.org>2010-02-23 12:46:50 -0500
commit3b12c38ac09ad253cf56099c243659a3a362ea67 (patch)
tree9a4058a85edaa3da2790630fcdf5009bbe2f6de9 /libcli/auth/schannel_state.h
parente5ab64a79902e710636352b01ccd0012d5df1c31 (diff)
downloadsamba-3b12c38ac09ad253cf56099c243659a3a362ea67.tar.gz
samba-3b12c38ac09ad253cf56099c243659a3a362ea67.tar.bz2
samba-3b12c38ac09ad253cf56099c243659a3a362ea67.zip
s3:schannel streamline interface
Make calling schannel much easier by removing the need to explicitly open the database. Let the abstraction do it instead.
Diffstat (limited to 'libcli/auth/schannel_state.h')
-rw-r--r--libcli/auth/schannel_state.h27
1 files changed, 13 insertions, 14 deletions
diff --git a/libcli/auth/schannel_state.h b/libcli/auth/schannel_state.h
index efa8d20b08..c1fa1245cf 100644
--- a/libcli/auth/schannel_state.h
+++ b/libcli/auth/schannel_state.h
@@ -23,8 +23,20 @@
#ifndef _LIBCLI_AUTH_SCHANNEL_STATE_H__
#define _LIBCLI_AUTH_SCHANNEL_STATE_H__
+NTSTATUS schannel_get_creds_state(TALLOC_CTX *mem_ctx,
+ const char *computer_name,
+ struct netlogon_creds_CredentialState **creds);
+
+NTSTATUS schannel_save_creds_state(TALLOC_CTX *mem_ctx,
+ struct netlogon_creds_CredentialState *creds);
+
+NTSTATUS schannel_check_creds_state(TALLOC_CTX *mem_ctx,
+ const char *computer_name,
+ struct netr_Authenticator *received_authenticator,
+ struct netr_Authenticator *return_authenticator,
+ struct netlogon_creds_CredentialState **creds_out);
+
struct ldb_context;
-struct tdb_context;
NTSTATUS schannel_store_session_key_ldb(struct ldb_context *ldb,
TALLOC_CTX *mem_ctx,
@@ -39,17 +51,4 @@ NTSTATUS schannel_creds_server_step_check_ldb(struct ldb_context *ldb,
struct netr_Authenticator *received_authenticator,
struct netr_Authenticator *return_authenticator,
struct netlogon_creds_CredentialState **creds_out);
-NTSTATUS schannel_store_session_key_tdb(struct tdb_context *tdb,
- TALLOC_CTX *mem_ctx,
- struct netlogon_creds_CredentialState *creds);
-NTSTATUS schannel_fetch_session_key_tdb(struct tdb_context *tdb,
- TALLOC_CTX *mem_ctx,
- const char *computer_name,
- struct netlogon_creds_CredentialState **creds);
-NTSTATUS schannel_creds_server_step_check_tdb(struct tdb_context *tdb,
- TALLOC_CTX *mem_ctx,
- const char *computer_name,
- struct netr_Authenticator *received_authenticator,
- struct netr_Authenticator *return_authenticator,
- struct netlogon_creds_CredentialState **creds_out);
#endif