[Assignment-7] App Intermediary and Proxy

- Intermediary is fully functional
- Proxy is ready until invocation of enclave
This commit is contained in:
Paul Zinselmeyer 2024-07-04 21:05:55 +02:00 committed by saschato
parent b41976a5ff
commit 6d966e0b94
7 changed files with 182 additions and 155 deletions

View file

@ -6,7 +6,7 @@
#include "intermediary.h"
char* BIN_NAME = "SignatureProxy";
static char* BIN_NAME = "SignatureProxy";
void syntax_exit(void) {
char* syntax =
@ -21,3 +21,7 @@ void syntax_exit(void) {
printf(syntax, BIN_NAME, intermediary_syntax(), proxy_syntax());
exit(1);
}
void set_bin_name(char* bin_name) {
BIN_NAME = bin_name;
}