4 overrides of TryDecryptCfbCore
System.Security.Cryptography (4)
System\Security\Cryptography\AesImplementation.cs (1)
131protected override bool TryDecryptCfbCore(
System\Security\Cryptography\DesImplementation.cs (1)
182protected override bool TryDecryptCfbCore(
System\Security\Cryptography\RC2Implementation.cs (1)
180protected override bool TryDecryptCfbCore(
System\Security\Cryptography\TripleDesImplementation.cs (1)
179protected override bool TryDecryptCfbCore(
7 references to TryDecryptCfbCore
System.Security.Cryptography (7)
System\Security\Cryptography\SymmetricAlgorithm.cs (7)
1010/// This method's behavior is defined by <see cref="TryDecryptCfbCore" />. 1060/// This method's behavior is defined by <see cref="TryDecryptCfbCore" />. 1077if (!TryDecryptCfbCore(ciphertext, iv, decryptBuffer, paddingMode, feedbackSizeInBits, out int written) 1136/// This method's behavior is defined by <see cref="TryDecryptCfbCore" />. 1149if (!TryDecryptCfbCore(ciphertext, iv, destination, paddingMode, feedbackSizeInBits, out int written)) 1195/// This method's behavior is defined by <see cref="TryDecryptCfbCore" />. 1209return TryDecryptCfbCore(ciphertext, iv, destination, paddingMode, feedbackSizeInBits, out bytesWritten);