// 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 referenceNo description available.
This structure contains the information necessary to set a new encryption key.
KeyLengthLength, in bytes, of the key stored in Key[MSR_KEY_SIZE].
KeyNameLengthLength, in bytes, of the key name stored in KeyName[MSR_KEY_SIZE].
KeyThe new encryption key.
KeyNameThe name of the new encryption key.