// pointofservicedriverinterface.h
typedef struct _MSR_AUTHENTICATE_DEVICE {
unsigned char Size;
unsigned char Challenge1[MSR_CHALLENGE_SIZE];
unsigned char SessionId[MSR_SESSION_ID_SIZE];
} MSR_AUTHENTICATE_DEVICE, *PMSR_AUTHENTICATE_DEVICE;
View the official Windows Driver Kit DDI referenceNo description available.
This structure provides the authentication information used to authenticate a device.
SizeIf the optional SessionId is present, this will include the size of SessionId[MSR_SESSION_ID_SIZE]
Challenge1The challenge token.
SessionIdThe session ID. This is primarily used to identify each transaction so that you can prevent errors such as processing the same transaction twice.
IOCTL_POINT_OF_SERVICE_MSR_AUTHENTICATE_DEVICE