format README, user friendly print

pull/11/head
kaleb-himes 2015-06-27 19:43:58 -06:00
parent 9c8b9d1810
commit 0d89eaf7c8
2 changed files with 7 additions and 5 deletions

View File

@ -6,6 +6,8 @@ How to use aes-file-encrypt.c
./aes-file-encrypt <-option> <KeySize> <input.file> <output.file>
KeySize examples: 128, 192, 256
typing -e for option will encrypt the input.file onto the output.file.
typing -d for option will decrypt the input.file onto the output.file.
NOTE: When decrypting make sure the key is the same used for the

View File

@ -251,7 +251,7 @@ int NoEcho(char* key, int size)
return -1060;
}
printf("Key: ");
printf("Unique Password: ");
fgets(key, size, stdin);
key[strlen(key) - 1] = 0;