4 overrides of TryEncryptCfbCore
System.Security.Cryptography (4)
System\Security\Cryptography\AesImplementation.cs (1)
156protected override bool TryEncryptCfbCore(
System\Security\Cryptography\DesImplementation.cs (1)
207protected override bool TryEncryptCfbCore(
System\Security\Cryptography\RC2Implementation.cs (1)
191protected override bool TryEncryptCfbCore(
System\Security\Cryptography\TripleDesImplementation.cs (1)
204protected override bool TryEncryptCfbCore(
7 references to TryEncryptCfbCore
System.Security.Cryptography (7)
System\Security\Cryptography\SymmetricAlgorithm.cs (7)
1250/// This method's behavior is defined by <see cref="TryEncryptCfbCore" />. 1300/// This method's behavior is defined by <see cref="TryEncryptCfbCore" />. 1317if (!TryEncryptCfbCore(plaintext, iv, buffer, paddingMode, feedbackSizeInBits, out int written) || 1368/// This method's behavior is defined by <see cref="TryEncryptCfbCore" />. 1381if (!TryEncryptCfbCore(plaintext, iv, destination, paddingMode, feedbackSizeInBits, out int written)) 1427/// This method's behavior is defined by <see cref="TryEncryptCfbCore" />. 1441return TryEncryptCfbCore(plaintext, iv, destination, paddingMode, feedbackSizeInBits, out bytesWritten);