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