SymmetricAlgorithm::CreateEncryptor Method ()
.NET Framework (current version)
Namespace:
System.Security.Cryptography
Assembly: mscorlib (in mscorlib.dll)
Return to top
Assembly: mscorlib (in mscorlib.dll)
If the current Key property is null, the GenerateKey method is called to create a new random Key. If the current IV property is null, the GenerateIV method is called to create a new random IV.
Use the CreateDecryptor overload with the same signature to decrypt the result of this method.
The following example encrypts a string using the transform object returned from the CreateEncryptor method.
using namespace System; using namespace System::Security::Cryptography; using namespace System::Text; class EncryptorExample { public: static void Main() { TripleDESCryptoServiceProvider^ tdesCSP = gcnew TripleDESCryptoServiceProvider(); tdesCSP->GenerateKey(); tdesCSP->GenerateIV(); String^ quote = "Things may come to those who wait, but only the " + "things left by those who hustle. -- Abraham Lincoln"; array<Byte>^ encQuote = EncryptString(tdesCSP, quote); Console::WriteLine("Encrypted Quote:\n"); Console::WriteLine(Convert::ToBase64String(encQuote)); Console::WriteLine("\nDecrypted Quote:\n"); Console::WriteLine(DecryptBytes(tdesCSP, encQuote)); } public: static array<Byte>^ EncryptString(SymmetricAlgorithm^ symAlg, String^ inString) { array<Byte>^ inBlock = UnicodeEncoding::Unicode->GetBytes(inString); ICryptoTransform^ xfrm = symAlg->CreateEncryptor(); array<Byte>^ outBlock = xfrm->TransformFinalBlock(inBlock, 0, inBlock->Length); return outBlock; } static String^ DecryptBytes(SymmetricAlgorithm^ symAlg, array<Byte>^ inBytes) { ICryptoTransform^ xfrm = symAlg->CreateDecryptor(); array<Byte>^ outBlock = xfrm->TransformFinalBlock(inBytes, 0, inBytes->Length); return UnicodeEncoding::Unicode->GetString(outBlock); } }; int main() { EncryptorExample::Main(); }
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: