/**
 * \file verify_auth_tocken_cmd.h
**/
#ifndef VERIFY_AUTH_TOKEN_H_
#define VERIFY_AUTH_TOKEN_H_

#include "hardware/hw_auth_token.h"

typedef enum {
    VR_DEFAULT,
    VR_SUCCESS,
    VR_FAIL,
    VR_MAX,
} verify_result_t;

typedef struct __attribute__ ((__packed__)) {
    hw_auth_token_t auth_token;
    verify_result_t result;
} verify_auth_token_cmd_t;

#endif /* COMMUNICATION_H_ */
