|
@@ -15147,10 +15147,10 @@ typedef struct {
|
|
|
/* DISA feature related data structures */
|
|
|
#define MAX_MAC_HEADER_LEN 32
|
|
|
typedef enum {
|
|
|
- INVALID,
|
|
|
- ENCRYPT = 1,
|
|
|
- DECRYPT = 2,
|
|
|
-} ENCRYPT_DECRYPT_FLAG;
|
|
|
+ WMI_ENCRYPT_DECRYPT_FLAG_INVALID,
|
|
|
+ WMI_ENCRYPT = 1,
|
|
|
+ WMI_DECRYPT = 2,
|
|
|
+} WMI_ENCRYPT_DECRYPT_FLAG;
|
|
|
|
|
|
typedef struct {
|
|
|
/**
|
|
@@ -15160,7 +15160,7 @@ typedef struct {
|
|
|
A_UINT32 tlv_header;
|
|
|
/** unique id identifying the VDEV, generated by the caller */
|
|
|
A_UINT32 vdev_id;
|
|
|
- ENCRYPT_DECRYPT_FLAG key_flag;
|
|
|
+ A_UINT32 key_flag; /* WMI_ENCRYPT_DECRYPT_FLAG */
|
|
|
A_UINT32 key_idx;
|
|
|
A_UINT32 key_cipher;
|
|
|
A_UINT32 key_len; /* units = bytes */
|