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

◆ CreateEncryptor() [2/3]

override ICryptoTransform Internal.Cryptography.DesImplementation.CreateEncryptor ( byte[] rgbKey,
byte[] rgbIV )
inline

Definition at line 24 of file DesImplementation.cs.

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

References Internal.Cryptography.DesImplementation.CreateTransform().