1
0

sac.h 415 B

1234567891011121314151617181920212223242526
  1. //
  2. // Microsoft Windows Media Technologies
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. //
  5. #ifndef __SAC_H__
  6. #define __SAC_H__
  7. typedef DWORD HMAC;
  8. #define RSA_KEY_LEN 64
  9. #define SAC_SESSION_KEYLEN 8
  10. #define SAC_PROTOCOL_WMDM 1
  11. #define SAC_PROTOCOL_V1 2
  12. #define SAC_CERT_X509 1
  13. #define SAC_CERT_V1 2
  14. typedef struct __MACINFO
  15. {
  16. BOOL fUsed;
  17. BYTE abMacState[36];
  18. } MACINFO;
  19. #endif //__SAC_H__