4 overrides of TryEncryptCfbCore
System.Security.Cryptography (4)
System\Security\Cryptography\AesImplementation.cs (1)
219protected 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)
1299/// This method's behavior is defined by <see cref="TryEncryptCfbCore" />. 1349/// This method's behavior is defined by <see cref="TryEncryptCfbCore" />. 1366if (!TryEncryptCfbCore(plaintext, iv, buffer, paddingMode, feedbackSizeInBits, out int written) || 1417/// This method's behavior is defined by <see cref="TryEncryptCfbCore" />. 1430if (!TryEncryptCfbCore(plaintext, iv, destination, paddingMode, feedbackSizeInBits, out int written)) 1476/// This method's behavior is defined by <see cref="TryEncryptCfbCore" />. 1490return TryEncryptCfbCore(plaintext, iv, destination, paddingMode, feedbackSizeInBits, out bytesWritten);