diff --git a/build.sh b/build.sh index 1849d9b..74e30f4 100755 --- a/build.sh +++ b/build.sh @@ -8,4 +8,4 @@ ${CC} ${CFLAGS} -c blst/server.c ${CC} ${CFLAGS} -c blst/assembly.S ${AR} rc libblst.a server.o assembly.o -${CC} ${CFLAGS} -o ctm ctm.c fstoken.c debugprint.c base64.c libblst.a \ No newline at end of file +${CC} ${CFLAGS} -o ftu ftu.c fstoken.c debugprint.c base64.c libblst.a \ No newline at end of file diff --git a/ftu b/ftu new file mode 100755 index 0000000..e41d5ac Binary files /dev/null and b/ftu differ diff --git a/ctm.c b/ftu.c similarity index 99% rename from ctm.c rename to ftu.c index 872d7ef..68569b9 100644 --- a/ctm.c +++ b/ftu.c @@ -14,11 +14,11 @@ char* token_path; void print_help(char* name){ - printf("FemtoStar Credit Token Manager (ctm)\n"); + printf("FemtoStar Token Utility (ftu)\n"); printf("This tool can be used to generate and process Credit Tokens for use with the FemtoStar Protocol.\n\n"); printf("Warning: This tool lets you do insecure or broken things! Be careful with it.\n"); - printf("ctm is still under development! Do not assume it is secure or complete yet.\n"); + printf("ftu is still under development! Do not assume it is secure or complete yet.\n"); printf("In particular, note that keys and tokens are currently stored unencrypted on-disk.\n\n"); printf("%s help - display this help\n", name); @@ -546,7 +546,7 @@ int main(int argc, char *argv[]){ token_path = getenv("FEMTOSTAR_TOKEN_PATH"); if(!token_path){ - fprintf(stderr, "The environment variable FEMTOSTAR_TOKEN_PATH does not exist! Please set it before using ctm.\n"); + fprintf(stderr, "The environment variable FEMTOSTAR_TOKEN_PATH does not exist! Please set it before using ftu.\n"); exit(1); }