blob: 7f52ee4105893d9c0b796ea4618aa6738c9757de [file] [log] [blame]
#ifndef CONTEXT_UTIL_H
#define CONTEXT_UTIL_H
#include "sapi/tpm20.h"
#include "test-options.h"
/**
* functions to setup TCTIs and SAPI contexts using data from the common
* options
*/
TSS2_TCTI_CONTEXT* tcti_device_init (char const *device_name);
TSS2_TCTI_CONTEXT* tcti_socket_init (char const *address,
uint16_t port);
TSS2_TCTI_CONTEXT* tcti_init_from_opts (test_opts_t *options);
TSS2_SYS_CONTEXT* sapi_init_from_opts (test_opts_t *options);
void sapi_teardown_full (TSS2_SYS_CONTEXT *sapi_context);
#endif /* CONTEXT_UTIL_H */