I have encrypted my output data. I want to save those data in a file. When I am saving it in a text file, I believe it is not saved properly. Because, I cant get proper data after decryption from that file. I am using C#.Do I need to implement my own file format? Please help me.

link|improve this question

0% accept rate
Try posting some of your code. It's difficult to know why something does not work when we can't see the code. – Charlie Salts Aug 8 '11 at 3:27
feedback

1 Answer

i belive it's Unnecessary to ask you if you tried encrypting / decrypting some simple string.

try using those methods for saving they are soo simple:

        System.IO.File.WriteAllBytes();
        System.IO.File.WriteAllText();
        System.IO.File.ReadAllBytes();
        System.IO.File.ReadAllText();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.