| 162 | } |
| 163 | |
| 164 | void ceshi_grad(unsigned long int eid,float *input,float *output,int M,int C){ |
| 165 | sgx_status_t ret = ecall_ceshi_grad(eid,input,output,M,C); |
| 166 | if (ret != SGX_SUCCESS) { |
| 167 | print_error_message(ret); |
| 168 | throw ret; |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | void encrypt1(unsigned long int eid,float *input, int N, float *output){ |
| 173 | //printf("ceshi_encrypt\n"); |
nothing calls this directly
no test coverage detected