if( ( fpub = fopen( "/home/max/rsa_pub.txt", "w" ) ) == NULL )
{
fprintf(stdout, " failed\n ! could not open rsa_pub.txt for writing\n\n" );
fflush(stdout);
goto exit;
}
Error message is shown below:
2019-12-02T11:50:58.719393Z [(E)ERROR] tid(0x7f7868f84d40) | enclave.signed:path=/home/max/rsa_pub.txt oe_errno=2 [/home/jenkins/work_dir/workspace/OpenEnclave-v0.7.x_packages/syscall/mount.c oe_mount_resolve:119]
2019-12-02T11:50:58.719423Z [(E)ERROR] tid(0x7f7868f84d40) | enclave.signed:oe_errno=2 [/home/jenkins/work_dir/workspace/OpenEnclave-v0.7.x_packages/syscall/fcntl.c oe_open:43]
failed
! could not open rsa_pub.txt for writing
oe_load_module_host_file_system()
followed by a call to mount()
as mentioned in the document.
@colemickens Azure ACC VMs support FLC (flexible launch control), which means production enclaves can be signed with any key.
Note that if you create an enclave in debug mode, you can run it on any SGX-enabled hardware. FLC is only relevant for production enclaves. This is done by passing OE_ENCLAVE_FLAG_DEBUG
with the flags to oe_create_enclave
.
We invite you to join us for triage meetings on Tuesdays from 10:00AM - 11:00AM PST to go over issues on the Github repo.
Please use this Teams Meeting link
or this phone number: +1 929-270-4006 United States, New York City (Toll) (866) 641-7188 (Toll-free) Conference ID: 526 582 229#
Hello Everyone,
This morning an issue has affected the Open Enclave SDK CI/CD taking Windows attestation testing offline. Simulation modes and Linux based testing will still function as expected but users will not be able to merge PR's until this is resolved.
This is being treated as a top priority and we will keep everyone in the loop as the situation progresses until resolution. Everyone’s patience is appreciated at this time.
Hello all, hope you're doing well, I have been trying to set up and Open Enclave local development environment on my Windows machine and I've got a couple of questions...
1) Can I run an Open Enclave app from my machine if I have an AMD processor?
2) I have installed the Open Enclave nugget package as per the instruction on the repository but when running CMake I receive the error message: "NUGET_PACKAGE_PATH not defined. Please define NUGET_PACKAGE_PATH as the path to the installed Intel and DCAP Client NuGet packages." At the start, I found it weird enough and couldn't find more information on the internet, so I decided to set an environment variable with the same name for an arbitrary folder, didn't work though.
Thanks in advance.
Hi All, I have cloned the open enclave repository from github in my ubuntu machine using the command git clone https://github.com/openenclave/openenclave.git
Can you guys help me how to start building my applications? I am not even able to run the open enclave.