| 79 | { |
| 80 | public: |
| 81 | explicit DeCryptOp(OpKernelConstruction *context) : OpKernel(context) |
| 82 | { |
| 83 | OP_REQUIRES_OK(context, context->GetAttr("eid_low", &eid_low_)); |
| 84 | OP_REQUIRES_OK(context, context->GetAttr("eid_high", &eid_high_)); |
| 85 | OP_REQUIRES_OK(context, context->GetAttr("times", ×_)); |
| 86 | lib = dlopen("/home/zhangyan/jhrsgx/privacy_test/privacy_tf/sgx_tf_ops/sgx.so", RTLD_LAZY); |
| 87 | OP_REQUIRES(context, lib != NULL, errors::Unknown("Unable to load sgx.so!")); |
| 88 | } |
| 89 | void Compute(OpKernelContext *context) override |
| 90 | { |
| 91 |
nothing calls this directly
no outgoing calls
no test coverage detected