Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libsgx/sgx-remote-attest.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ int sgx_remote_attest_target(int challenger_port, int quote_port, char *conf)
}
puts("MAC match, PASS!");

//Send intra attestaion result to Quoting enclave
//Send intra attestation result to Quoting enclave
puts("Sending result message to Quoting enclave ...");
resultmsg = "Good";
if(sgx_write_sock(quote_fd, resultmsg, strlen(resultmsg)) < 0) {
Expand Down
2 changes: 1 addition & 1 deletion user/demo/simple-intra-attest-target.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ void enclave_main()

ret = sgx_intra_attest_target(challenger_port);
if(ret == 1) {
puts("Intra Attestaion Success!");
puts("Intra Attestation Success!");
} else {
puts("Intra Attestation Fail!");
}
Expand Down
2 changes: 1 addition & 1 deletion user/demo/simple-remote-attest-quote.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void enclave_main()

ret = sgx_remote_attest_quote(target_port);
if(ret == 1) {
puts("Remote Attestaion Success!");
puts("Remote Attestation Success!");
} else {
puts("Remote Attestation Fail!");
}
Expand Down
2 changes: 1 addition & 1 deletion user/test/simple-intra-attest-challenger.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ void enclave_main()

ret = sgx_intra_attest_challenger(target_port, conf);
if(ret == 1) {
puts("Intra Attestaion Success!");
puts("Intra Attestation Success!");
} else {
puts("Intra Attestation Fail!");
}
Expand Down
2 changes: 1 addition & 1 deletion user/test/simple-remote-attest-challenger.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ void enclave_main()

ret = sgx_remote_attest_challenger(target_ip, target_port, challenge);
if(ret == 1) {
puts("Remote Attestaion Success!");
puts("Remote Attestation Success!");
} else {
puts("Remote Attestation Fail!");
}
Expand Down
2 changes: 1 addition & 1 deletion user/test/simple-remote-attest-target.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ void enclave_main()

ret = sgx_remote_attest_target(challenger_port, quote_port, conf);
if(ret == 1) {
puts("Remote Attestaion Success!");
puts("Remote Attestation Success!");
} else {
puts("Remote Attestation Fail!");
}
Expand Down