<(E-Mail Removed)> wrote:
> I have a really strange conversion-problem here:
It's not really strange at all.
Encryption gives arbitrary binary data. Converting that into ASCII is a
lossy operation, as ASCII only defines values under 128. You shouldn't
treat arbitrary binary data as if it were encoded text. Use something
like Base64 instead (see Convert.ToBase64String and
Convert.FromBase64String).
--
Jon Skeet - <(E-Mail Removed)>
http://www.pobox.com/~skeet Blog:
http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too