1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-06 16:23:49 +03:00
Files
samba-mirror/source/heimdal/lib/hdb/hdb-private.h
Andrew Bartlett ef5604b877 r15481: Update heimdal/ to match current lorikeet-heimdal.
This includes many useful upstream changes, many of which should
reduce warnings in our compile.

It also includes a change to the HDB interface, which removes the need
for Samba4/lorikeet-heimdal to deviate from upstream for hdb_fetch().
The new flags replace the old entry type enum.

(This required the rework in hdb-ldb.c included in this commit)

Andrew Bartlett
2007-10-10 14:05:39 -05:00

55 lines
985 B
C

/* This is a generated file */
#ifndef __hdb_private_h__
#define __hdb_private_h__
#include <stdarg.h>
krb5_error_code
_hdb_fetch (
krb5_context /*context*/,
HDB */*db*/,
krb5_const_principal /*principal*/,
unsigned /*flags*/,
hdb_entry_ex */*entry*/);
hdb_master_key
_hdb_find_master_key (
uint32_t */*mkvno*/,
hdb_master_key /*mkey*/);
int
_hdb_mkey_decrypt (
krb5_context /*context*/,
hdb_master_key /*key*/,
krb5_key_usage /*usage*/,
void */*ptr*/,
size_t /*size*/,
krb5_data */*res*/);
int
_hdb_mkey_encrypt (
krb5_context /*context*/,
hdb_master_key /*key*/,
krb5_key_usage /*usage*/,
const void */*ptr*/,
size_t /*size*/,
krb5_data */*res*/);
int
_hdb_mkey_version (hdb_master_key /*mkey*/);
krb5_error_code
_hdb_remove (
krb5_context /*context*/,
HDB */*db*/,
krb5_const_principal /*principal*/);
krb5_error_code
_hdb_store (
krb5_context /*context*/,
HDB */*db*/,
unsigned /*flags*/,
hdb_entry_ex */*entry*/);
#endif /* __hdb_private_h__ */