Hi, there
***************************************************************
RijndaelManaged RMCrypto = new RijndaelManaged();
byte[] Key = {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16};
byte[] IV = {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16};
CryptoStream CryptStream = new CryptoStream(NetStream,
RMCrypto.CreateEncryptor(Key, IV), CryptoStreamMode.Write);
StreamWriter SWriter = new StreamWriter(CryptStream);
SWriter.WriteLine("Hello World!");
***************************************************************
Compile and run it, is possible that the Key[] value would be stealed
Thanks...

Encryptor's security
iifu
maheshci
But now I have some problems, I don't find out any sample.
So, I don't know how to use the PasswordDeriveBytes class.
What can I do
Please...
lamp
Thank you very much.
Nelson Neves
What's the NameSpace of PasswordDerivedBytes class
I cann't find out in MSDN.
Thanks...
Teknologik
Blerus