34 references to CFB
System.Security.Cryptography (34)
src\runtime\src\libraries\Common\src\Interop\Windows\BCrypt\AesBCryptModes.cs (2)
24(CipherMode.CFB, 16) => s_hAlgCfb128.Value, 25(CipherMode.CFB, 1) => s_hAlgCfb8.Value,
src\runtime\src\libraries\Common\src\Interop\Windows\BCrypt\DESBCryptModes.cs (1)
23(CipherMode.CFB, 1) => s_hAlgCfb8.Value,
src\runtime\src\libraries\Common\src\Interop\Windows\BCrypt\TripleDesBCryptModes.cs (2)
28(CipherMode.CFB, 1) => s_hAlgCfb8.Value, 29(CipherMode.CFB, 8) => s_hAlgCfb64.Value,
System\Security\Cryptography\AesCng.Windows.cs (2)
218CipherMode.CFB, 238CipherMode.CFB,
System\Security\Cryptography\AesImplementation.cs (4)
205CipherMode.CFB, 233CipherMode.CFB, 269if (Mode == CipherMode.CFB) 290throw new CryptographicException(SR.Format(SR.Cryptography_CipherModeFeedbackNotSupported, feedback, CipherMode.CFB));
System\Security\Cryptography\BasicSymmetricCipherCsp.cs (1)
25if (cipherMode == CipherMode.CFB)
System\Security\Cryptography\BasicSymmetricCipherLiteNCrypt.cs (1)
47CipherMode.CFB => s_CFBMode,
System\Security\Cryptography\CngSymmetricAlgorithmCore.cs (5)
240Debug.Assert(mode == CipherMode.CFB ? feedbackSizeInBits == 8 : true); 257Debug.Assert(mode == CipherMode.CFB ? feedbackSizeInBits == 8 : true); 291if (mode != CipherMode.CFB) 298throw new CryptographicException(SR.Format(SR.Cryptography_CipherModeFeedbackNotSupported, feedbackSizeInBits, CipherMode.CFB)); 305throw new CryptographicException(SR.Format(SR.Cryptography_CipherModeFeedbackNotSupported, feedbackSizeInBits, CipherMode.CFB));
System\Security\Cryptography\DesImplementation.cs (4)
80if (Mode == CipherMode.CFB) 193CipherMode.CFB, 218CipherMode.CFB, 237throw new CryptographicException(SR.Format(SR.Cryptography_CipherModeFeedbackNotSupported, feedback, CipherMode.CFB));
System\Security\Cryptography\Helpers.cs (1)
332return (mode == CipherMode.CFB ? feedbackSizeInBits : algorithm.BlockSize) / 8;
System\Security\Cryptography\RC2Implementation.cs (4)
73if (Mode == CipherMode.CFB) 188throw new CryptographicException(SR.Format(SR.Cryptography_CipherModeNotSupported, CipherMode.CFB)); 199throw new CryptographicException(SR.Format(SR.Cryptography_CipherModeNotSupported, CipherMode.CFB)); 205throw new CryptographicException(SR.Format(SR.Cryptography_CipherModeFeedbackNotSupported, feedback, CipherMode.CFB));
System\Security\Cryptography\SymmetricAlgorithm.cs (1)
149if (!(value == CipherMode.CBC || value == CipherMode.ECB || value == CipherMode.CFB))
System\Security\Cryptography\TripleDESCng.Windows.cs (2)
186CipherMode.CFB, 206CipherMode.CFB,
System\Security\Cryptography\TripleDesImplementation.cs (4)
77if (Mode == CipherMode.CFB) 190CipherMode.CFB, 215CipherMode.CFB, 234throw new CryptographicException(SR.Format(SR.Cryptography_CipherModeFeedbackNotSupported, feedback, CipherMode.CFB));