format README, user friendly Print
parent
0d89eaf7c8
commit
99163fe6fc
|
@ -6,6 +6,8 @@ How to use camellia-encrypt.c
|
||||||
|
|
||||||
./camellia-encrypt <-option> <input.file> <KeySize> <output.file>
|
./camellia-encrypt <-option> <input.file> <KeySize> <output.file>
|
||||||
|
|
||||||
|
KeySize examples: 128, 192, 256
|
||||||
|
|
||||||
typing -e for option will encrypt the input.file onto the output.file.
|
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.
|
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
|
NOTE: When decrypting make sure the key is the same used for the
|
||||||
|
|
|
@ -249,7 +249,7 @@ int NoEcho(char* key, int size)
|
||||||
return -1060;
|
return -1060;
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("Key: ");
|
printf("Unique Password: ");
|
||||||
fgets(key, size, stdin);
|
fgets(key, size, stdin);
|
||||||
key[strlen(key) - 1] = 0;
|
key[strlen(key) - 1] = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue