diff options
author | Seppia <seppia@seppio.fish> | 2018-07-05 17:18:03 +0200 |
---|---|---|
committer | Seppia <seppia@seppio.fish> | 2018-07-05 17:18:03 +0200 |
commit | bf07e0d2f69d7e801515ae33393f91a7867604b4 (patch) | |
tree | fc1442b3842b4a257a39e29458ff9531cb56e145 /src | |
parent | 14a690d85cf9e06be1708e515fd029d1666dbd6d (diff) | |
download | onetimebluh-bf07e0d2f69d7e801515ae33393f91a7867604b4.tar.gz onetimebluh-bf07e0d2f69d7e801515ae33393f91a7867604b4.tar.bz2 onetimebluh-bf07e0d2f69d7e801515ae33393f91a7867604b4.zip |
Removed outdated comments
Diffstat (limited to 'src')
-rw-r--r-- | src/onetimebluh.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/onetimebluh.c b/src/onetimebluh.c index 960b259..b9cd8ec 100644 --- a/src/onetimebluh.c +++ b/src/onetimebluh.c @@ -23,10 +23,10 @@ char* cryptXor (char* inputStr, FILE* keyFile); char* fcryptXor (FILE* inputFile, FILE* keyFile); char* binDump (char* inputStr, char* binChars); char* ubinDump (char* inputStr, char* binChars); -void xor (Opts* opzioni); /* operates the bitwise XOR between mess and keyf and puts the output to outp */ -void keyrand (Opts* opzioni); /* generates random numbers using RAND_bytes from openssl and puts them into outp */ -void bluh (Opts* opzioni); /* performs the binary dump of the input file and prints that to outp */ -void help (char* av[]); /* prints the help message */ +void xor (Opts* opzioni); +void keyrand (Opts* opzioni); +void bluh (Opts* opzioni); +void help (char* av[]); int main (int argc, char* argv[]) { |