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

◆ EncryptCfb() [1/3]

byte[] System.Security.Cryptography.SymmetricAlgorithm.EncryptCfb ( byte[] plaintext,
byte[] iv,
PaddingMode paddingMode = PaddingMode::None,
int feedbackSizeInBits = 8 )
inlineinherited

Definition at line 557 of file SymmetricAlgorithm.cs.

558 {
559 return EncryptCfb(new ReadOnlySpan<byte>(plaintext), new ReadOnlySpan<byte>(iv), paddingMode, feedbackSizeInBits);
560 }
byte[] EncryptCfb(byte[] plaintext, byte[] iv, PaddingMode paddingMode=PaddingMode.None, int feedbackSizeInBits=8)

References System.Security.Cryptography.SymmetricAlgorithm.EncryptCfb().

Referenced by System.Security.Cryptography.SymmetricAlgorithm.EncryptCfb().