MSR_UPDATE_KEY - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// pointofservicedriverinterface.h

typedef struct _MSR_UPDATE_KEY {
  unsigned char KeyLength;
  unsigned char KeyNameLength;
  unsigned char Key[MSR_KEY_SIZE];
  unsigned char KeyName[MSR_KEY_NAME_SIZE];
} MSR_UPDATE_KEY, *PMSR_UPDATE_KEY;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-pointofservicedriverinterface-_msr_update_key)

Description

This structure contains the information necessary to set a new encryption key.

Members

KeyLength

Length, in bytes, of the key stored in Key[MSR_KEY_SIZE].

KeyNameLength

Length, in bytes, of the key name stored in KeyName[MSR_KEY_SIZE].

Key

The new encryption key.

KeyName

The name of the new encryption key.