mirror of
https://github.com/corda/corda.git
synced 2025-01-01 02:36:44 +00:00
83d6a248a8
* ENT-970 - SGX remote attestation host * Remote attestation enclave * Client for the remote attestation host * Communicates with ISV / RA server, which in turn communicates with the Intel Attestation Service * Native library bridging the client code running on the JVM with the native bits controlling and communicating with the enclave * ENT-970 - Address comments from code review * ENT-970 - More updates addressing review comments * ENT-970 - Integrate with root Gradle project for SGX
14 lines
294 B
C++
14 lines
294 B
C++
#ifndef __JNI_HPP__
|
|
#define __JNI_HPP__
|
|
|
|
#include <jni.h>
|
|
|
|
#define NATIVE_WRAPPER(return_type, method) \
|
|
JNIEXPORT return_type JNICALL \
|
|
Java_net_corda_sgx_bridge_wrapper_NativeWrapper_##method
|
|
|
|
#define KLASS(name) \
|
|
("net/corda/sgx/bridge/wrapper/" name)
|
|
|
|
#endif /* __JNI_HPP__ */
|