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.

34 lines
696 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name :
  4. replseed.hxx
  5. Abstract:
  6. Definitions for session keys used during replication
  7. Author:
  8. Alex Mallet (amallet) 6-Mar-1998
  9. --*/
  10. #ifndef _REPLSEED_HXX_
  11. #define _REPLSEED_HXX_
  12. #define IIS_SEED_MAJOR_VERSION 1
  13. #define IIS_SEED_MINOR_VERSION 0
  14. #define SEED_HEADER_SIZE (3 + sizeof(ALG_ID)) //size of header info at beginning of seed
  15. #define MB_REPLICATION_PATH L"Replication" //path under /W3SVC where seed is stored
  16. #define SHA1_HASH_SIZE 20 //size of SHA1 hash, in bytes
  17. #define MD5_HASH_SIZE 16 //size of MD5 hash, in bytes
  18. #endif //_REPLSEED_HXX_