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.
38 lines
681 B
38 lines
681 B
/*****************************************************************/
|
|
/** Microsoft Windows for Workgroups **/
|
|
/** Copyright (C) Microsoft Corp., 1991-1992 **/
|
|
/*****************************************************************/
|
|
|
|
|
|
/*
|
|
cache.h
|
|
Memory based Password caching support prototypes.
|
|
|
|
FILE HISTORY:
|
|
|
|
davidar 12/30/93 Created
|
|
|
|
*/
|
|
|
|
void
|
|
CacheInitializeCache(
|
|
);
|
|
|
|
BOOL
|
|
CacheGetPassword(
|
|
PSSP_CREDENTIAL Credential
|
|
);
|
|
|
|
BOOL
|
|
CacheSetPassword(
|
|
PSSP_CREDENTIAL Credential
|
|
);
|
|
|
|
#ifndef WIN
|
|
SECURITY_STATUS
|
|
CacheSetCredentials(
|
|
IN PVOID AuthData,
|
|
PSSP_CREDENTIAL Credential
|
|
);
|
|
#endif
|
|
|