Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CreateEncryptor() [2/3]

override ICryptoTransform Internal.Cryptography.AesImplementation.CreateEncryptor ( byte[] rgbKey,
byte[] rgbIV )
inlinesealed

Definition at line 24 of file AesImplementation.cs.

25 {
26 return CreateTransform(rgbKey, rgbIV.CloneByteArray(), encrypting: true);
27 }
ICryptoTransform CreateTransform(byte[] rgbKey, byte[] rgbIV, bool encrypting)

References Internal.Cryptography.AesImplementation.CreateTransform().