12345678910111213141516171819 |
- #ifndef __CLIENTS_HPP__
- #define __CLIENTS_HPP__
- struct IngClient {
- sgx_aes_gcm_128bit_key_t key;
- // Add other relevant ingestion client state like
- // public priority and last epoch here.
- };
- struct StgClient{
- sgx_aes_gcm_128bit_key_t key;
- };
- bool authenticateClient(unsigned char *auth_message,
- const sgx_aes_gcm_128bit_key_t *ckey);
- #endif
|