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

◆ CreateDecryptor() [2/3]

override ICryptoTransform Internal.Cryptography.RC2Implementation.CreateDecryptor ( byte[] rgbKey,
byte[] rgbIV )
inline

Definition at line 29 of file RC2Implementation.cs.

30 {
31 return CreateTransform(rgbKey, rgbIV.CloneByteArray(), encrypting: false);
32 }
ICryptoTransform CreateTransform(byte[] rgbKey, byte[] rgbIV, bool encrypting)

References Internal.Cryptography.RC2Implementation.CreateTransform().