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.

53 lines
800 B

  1. /*++
  2. Copyright (c) 1996, 1997 Microsoft Corporation
  3. Module Name:
  4. keybckup.h
  5. Abstract:
  6. This module contains routines associated with server side Key Backup
  7. operations.
  8. Author:
  9. Scott Field (sfield) 16-Aug-97
  10. --*/
  11. #ifndef __KEYSRV_H__
  12. #define __KEYSRV_H__
  13. DWORD
  14. StartBackupKeyServer(
  15. VOID
  16. );
  17. DWORD
  18. StopBackupKeyServer(
  19. VOID
  20. );
  21. DWORD
  22. GetSystemCredential(
  23. IN BOOL fLocalMachine,
  24. IN OUT BYTE rgbCredential[ A_SHA_DIGEST_LEN ]
  25. );
  26. BOOL
  27. UpdateSystemCredentials(
  28. VOID
  29. );
  30. BOOL
  31. GetDomainControllerName(
  32. IN HANDLE hToken,
  33. IN OUT LPWSTR wszDomainControllerName,
  34. IN OUT PDWORD pcchDomainControllerName,
  35. IN BOOL fRediscover
  36. );
  37. #endif // __KEYSRV_H__