#include <botan/tpm.h>
#include <botan/rsa.h>
#include <botan/hash.h>
#include <botan/hash_id.h>
#include <botan/der_enc.h>
#include <botan/workfactor.h>
#include <botan/pk_ops.h>
#include <sstream>
#include <tss/platform.h>
#include <tss/tspi.h>
#include <trousers/trousers.h>
Go to the source code of this file.
◆ TSPI_CHECK_SUCCESS
#define TSPI_CHECK_SUCCESS |
( |
|
expr | ) |
|
Value: do { \
TSS_RESULT res = expr; \
if(res != TSS_SUCCESS) \
tss_error(res, #expr, __FILE__, __LINE__); \
} while(0)
Definition at line 68 of file tpm.cpp.
68 { \
69 TSS_RESULT res = expr; \
70 if(res != TSS_SUCCESS) \
71 tss_error(res, #expr, __FILE__, __LINE__); \
72 } while(0)