diff options
author | Simo Sorce <idra@samba.org> | 2010-02-18 14:44:09 -0500 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2010-02-23 12:46:50 -0500 |
commit | 3b12c38ac09ad253cf56099c243659a3a362ea67 (patch) | |
tree | 9a4058a85edaa3da2790630fcdf5009bbe2f6de9 /source3/include | |
parent | e5ab64a79902e710636352b01ccd0012d5df1c31 (diff) | |
download | samba-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 'source3/include')
-rw-r--r-- | source3/include/proto.h | 9 | ||||
-rw-r--r-- | source3/include/secrets.h | 2 |
2 files changed, 0 insertions, 11 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index f8c3032ff1..be932a960d 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -4746,15 +4746,6 @@ bool secrets_delete_generic(const char *owner, const char *key); bool secrets_store_local_schannel_key(uint8_t schannel_key[16]); bool secrets_fetch_local_schannel_key(uint8_t schannel_key[16]); -/* The following definitions come from passdb/secrets_schannel.c */ - -TDB_CONTEXT *open_schannel_session_store(TALLOC_CTX *mem_ctx); -NTSTATUS schannel_fetch_session_key(TALLOC_CTX *mem_ctx, - const char *computer_name, - struct netlogon_creds_CredentialState **pcreds); -NTSTATUS schannel_store_session_key(TALLOC_CTX *mem_ctx, - struct netlogon_creds_CredentialState *creds); - /* The following definitions come from passdb/util_builtin.c */ bool lookup_builtin_rid(TALLOC_CTX *mem_ctx, uint32 rid, const char **name); diff --git a/source3/include/secrets.h b/source3/include/secrets.h index f369379c70..d0848bdfa4 100644 --- a/source3/include/secrets.h +++ b/source3/include/secrets.h @@ -87,6 +87,4 @@ struct afs_keyfile { #define SECRETS_AFS_KEYFILE "SECRETS/AFS_KEYFILE" -#define SECRETS_SCHANNEL_STATE "SECRETS/SCHANNEL" - #endif /* _SECRETS_H */ |