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.

20 lines
325 B

  1. #ifndef __SAC_H__
  2. #define __SAC_H__
  3. typedef DWORD HMAC;
  4. #define RSA_KEY_LEN 64
  5. #define SAC_SESSION_KEYLEN 8
  6. #define SAC_PROTOCOL_WMDM 1
  7. #define SAC_PROTOCOL_V1 2
  8. #define SAC_CERT_X509 1
  9. #define SAC_CERT_V1 2
  10. typedef struct __MACINFO
  11. {
  12. BOOL fUsed;
  13. BYTE abMacState[36];
  14. } MACINFO;
  15. #endif //__SAC_H__