We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
message may be NULL:
message
sgx-based-mix-networks/mix_solution/Enclave/Enclave.cpp
Line 156 in 2827f10
We can infer that message holds sensitive information because it will be encrypted:
Line 171 in 2827f10
So choosen_message is sensitive too beacuse its content will be copied into message
choosen_message
Line 157 in 2827f10
if message is NULL, choosen_message will be copied outside enclave, which results in privacy leakage.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
message
may be NULL:sgx-based-mix-networks/mix_solution/Enclave/Enclave.cpp
Line 156 in 2827f10
We can infer that
message
holds sensitive information because it will be encrypted:sgx-based-mix-networks/mix_solution/Enclave/Enclave.cpp
Line 171 in 2827f10
So
choosen_message
is sensitive too beacuse its content will be copied intomessage
sgx-based-mix-networks/mix_solution/Enclave/Enclave.cpp
Line 157 in 2827f10
if
message
is NULL,choosen_message
will be copied outside enclave, which results in privacy leakage.The text was updated successfully, but these errors were encountered: