MCPcopy Create free account
hub / github.com/conflow-dev/ConFlow / sign

Function sign

sgx_tf_ops/App/App.cpp:366–372  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

364}
365
366void sign(unsigned long int eid, float *input,int N, float *output){
367 sgx_status_t ret = ecall_sign(eid,input,N,output);
368 if (ret != SGX_SUCCESS) {
369 print_error_message(ret);
370 throw ret;
371 }
372}
373
374void sign_grad(unsigned long int eid, float *input, float *grad,int N, float *output){
375 sgx_status_t ret = ecall_sign_grad(eid,input,grad,N,output);

Callers

nothing calls this directly

Calls 2

ecall_signFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected