For 0.21.0-insiders (not released yet) we've added support for __int128_t and __uint128_t, but uint128_t needs to be defined by the user or library, i.e. using uint128_t = __uint128_t; in code or uint128_t=__uint128_t in the defines section of c_cpp_properties.json ge...
In VS, I created a simple Win32 console application and added paths to sgx_tcrypto.h and sgx_tcrypto.lib to the project properties. But while building it turned out that the library depends on libmmdd.lib. I have to questions: 1. Am I allowed to use...
std::uint8_t size: 1, digits: 8 std::int8_t size: 1, digits: 7 std::uint16_t size: 2, digits: 16 std::int16_t size: 2, digits: 15 std::uint32_t size: 4, digits: 32 std::int32_t size: 4, digits: 31 std::uint64_t size: 8, digits: 64 ...
I tried to use sgx_tcrypto in a simple project. In VS, I created a simple Win32 console application and added paths to sgx_tcrypto.h and sgx_tcrypto.lib to the project properties. But while building it turned out that the library depends on libmmdd.lib. I have to que...