Hi, i encrypt a file using ideas from tldp.org/LDP/LG/issue87/vinayak.html. I downloaded and compiled this source code for encrypting/decrypting a simple text file. Once compiled I do:
./blowfish input_file.txt output_enc.txt output_dec.txt
I use the options:
G
for generating a keyE
for encrypting the file, sooutput_enc.txt
is generatedD
for decryptingoutput_enc.txt
sooutput_dec.txt
is generated
In the third step I obtain a segmentation fault. A decrypted file is generated but it differs in some characters from the original one. Any ideas?