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

◆ DecryptCfb() [1/3]

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

Definition at line 510 of file SymmetricAlgorithm.cs.

511 {
512 if (ciphertext == null)
513 {
514 throw new ArgumentNullException("ciphertext");
515 }
516 if (iv == null)
517 {
518 throw new ArgumentNullException("iv");
519 }
520 return DecryptCfb(new ReadOnlySpan<byte>(ciphertext), new ReadOnlySpan<byte>(iv), paddingMode, feedbackSizeInBits);
521 }
byte[] DecryptCfb(byte[] ciphertext, byte[] iv, PaddingMode paddingMode=PaddingMode.None, int feedbackSizeInBits=8)

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

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