Was stuggling in how to encrypt 2 strings together.
Because I add bits and bits string in real time (by str = str + bitString;) and at the end. I generate the string and encrpt it.
Now the question is can I encypt and write the bitString in real time like textwriter? Something like: CrytoStream cr = new (outFile,xxx,write) cr.write(bitString);
Examples would be appricated.