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.

60 lines
1.1 KiB

  1. //+-----------------------------------------------------------------------
  2. //
  3. // Copyright (c) 2001 Microsoft Corporation
  4. //
  5. // File: WDIGEST.H
  6. //
  7. // Contents: Public WDigest Security Package structures for use
  8. // with APIs from SECURITY.H
  9. //
  10. //
  11. // History: 28Mar01, KDamour Created
  12. //
  13. //------------------------------------------------------------------------
  14. #ifndef __WDIGEST_H__
  15. #define __WDIGEST_H__
  16. #if _MSC_VER > 1000
  17. #pragma once
  18. #endif
  19. // begin_ntsecapi
  20. #ifndef WDIGEST_SP_NAME_A
  21. #define WDIGEST_SP_NAME_A "WDigest"
  22. #define WDIGEST_SP_NAME_W L"WDigest"
  23. #ifdef UNICODE
  24. #define WDIGEST_SP_NAME WDIGEST_SP_NAME_W
  25. #else
  26. #define WDIGEST_SP_NAME WDIGEST_SP_NAME_A
  27. #endif
  28. #endif // WDIGEST_SP_NAME_A
  29. // end_ntsecapi
  30. // begin_ntsecapi
  31. // This flag indicates to EncryptMessage that the message is not to actually
  32. // be encrypted, but a header/trailer is to be produced - SECQOP_WRAP_NO_ENCRYPT
  33. // end_ntsecapi
  34. #endif // __WDIGEST_H__