2017-11-05 15:38:55 +00:00
|
|
|
#ifndef TREZORHAL_SECBOOL_H
|
|
|
|
#define TREZORHAL_SECBOOL_H
|
2017-10-26 21:51:39 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
typedef uint32_t secbool;
|
2017-10-30 17:31:31 +00:00
|
|
|
#define sectrue 0xAAAAAAAAU
|
|
|
|
#define secfalse 0x00000000U
|
2017-10-26 21:51:39 +00:00
|
|
|
|
|
|
|
#endif
|