SKALE-4262 cleanup

parent e46adcf4
...@@ -171,7 +171,6 @@ void enclave_init() { ...@@ -171,7 +171,6 @@ void enclave_init() {
return; return;
inited = 1; inited = 1;
LOG_INFO("Initing libff"); LOG_INFO("Initing libff");
try { try {
......
...@@ -66,7 +66,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ...@@ -66,7 +66,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define INIT_ERROR_STATE *errString = 0; *errStatus = UNKNOWN_ERROR; #define INIT_ERROR_STATE *errString = 0; *errStatus = UNKNOWN_ERROR;
#define SET_SUCCESS *errStatus = 0; #define SET_SUCCESS *errStatus = 0;
#define CHECK_STATE(_EXPRESSION_) \ #define CHECK_STATE(_EXPRESSION_) \
if (!(_EXPRESSION_)) { \ if (!(_EXPRESSION_)) { \
LOG_ERROR("State check failed::");LOG_ERROR(#_EXPRESSION_); \ LOG_ERROR("State check failed::");LOG_ERROR(#_EXPRESSION_); \
...@@ -91,7 +90,6 @@ LOG_ERROR(errString); \ ...@@ -91,7 +90,6 @@ LOG_ERROR(errString); \
goto clean; \ goto clean; \
}; };
#define CHECK_STATUS2(__ERRMESSAGE__) if (status != SGX_SUCCESS) { \ #define CHECK_STATUS2(__ERRMESSAGE__) if (status != SGX_SUCCESS) { \
snprintf(errString, BUF_LEN, __ERRMESSAGE__, status); \ snprintf(errString, BUF_LEN, __ERRMESSAGE__, status); \
LOG_ERROR(errString); \ LOG_ERROR(errString); \
...@@ -138,10 +136,8 @@ void trustedEnclaveInit(uint64_t _logLevel) { ...@@ -138,10 +136,8 @@ void trustedEnclaveInit(uint64_t _logLevel) {
LOG_INFO("Calling enclave init"); LOG_INFO("Calling enclave init");
enclave_init(); enclave_init();
LOG_INFO("Reading random"); LOG_INFO("Reading random");
globalRandom = calloc(32,1); globalRandom = calloc(32,1);
...@@ -228,7 +224,6 @@ void get_global_random(unsigned char *_randBuff, uint64_t _size) { ...@@ -228,7 +224,6 @@ void get_global_random(unsigned char *_randBuff, uint64_t _size) {
memcpy(_randBuff, globalRandom, _size); memcpy(_randBuff, globalRandom, _size);
} }
void sealHexSEK(int *errStatus, char *errString, void sealHexSEK(int *errStatus, char *errString,
uint8_t *encrypted_sek, uint64_t *enc_len, char *sek_hex) { uint8_t *encrypted_sek, uint64_t *enc_len, char *sek_hex) {
CALL_ONCE CALL_ONCE
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment