blob: b9a787c6befb7042b362f0a1cda36f5a1e521953 [file] [log] [blame]
/*
* Copyright (c) 2017, Linaro Limited
* All rights reserved.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#ifndef __HOTP_TA_H__
#define __HOTP_TA_H__
/*
* This TA implements HOTP according to:
* https://www.ietf.org/rfc/rfc4226.txt
*/
#define TA_HOTP_UUID \
{ 0x484d4143, 0x2d53, 0x4841, \
{ 0x31, 0x20, 0x4a, 0x6f, 0x63, 0x6b, 0x65, 0x42 } }
/* The function ID(s) implemented in this TA */
#define TA_HOTP_CMD_REGISTER_SHARED_KEY 0
#define TA_HOTP_CMD_GET_HOTP 1
#endif