Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

56 lines
804 B

/*++
Copyright (c) 1998 Microsoft Corporation
Module Name:
keycache.h
Abstract:
This module contains routines for accessing cached masterkeys.
Author:
Scott Field (sfield) 07-Nov-98
Revision History:
--*/
#ifndef __KEYCACHE_H__
#define __KEYCACHE_H__
BOOL
InitializeKeyCache(
VOID
);
VOID
DeleteKeyCache(
VOID
);
BOOL
SearchMasterKeyCache(
IN PLUID pLogonId,
IN GUID *pguidMasterKey,
IN OUT PBYTE *ppbMasterKey,
OUT PDWORD pcbMasterKey
);
BOOL
InsertMasterKeyCache(
IN PLUID pLogonId,
IN GUID *pguidMasterKey,
IN PBYTE pbMasterKey,
IN DWORD cbMasterKey
);
BOOL
PurgeMasterKeyCache(
VOID
);
#endif // __KEYCACHE_H__