27 references to CFB
System.Security.Cryptography (27)
System\Security\Cryptography\AesImplementation.cs (4)
142CipherMode.CFB, 167CipherMode.CFB, 198if (Mode == CipherMode.CFB) 219throw new CryptographicException(SR.Format(SR.Cryptography_CipherModeFeedbackNotSupported, feedback, CipherMode.CFB));
System\Security\Cryptography\AesImplementation.OpenSsl.cs (6)
47(128, CipherMode.CFB) when feedback == 8 => Interop.Crypto.EvpAes128Cfb8(), 48(128, CipherMode.CFB) when feedback == 128 => Interop.Crypto.EvpAes128Cfb128(), 52(192, CipherMode.CFB) when feedback == 8 => Interop.Crypto.EvpAes192Cfb8(), 53(192, CipherMode.CFB) when feedback == 128 => Interop.Crypto.EvpAes192Cfb128(), 57(256, CipherMode.CFB) when feedback == 8 => Interop.Crypto.EvpAes256Cfb8(), 58(256, CipherMode.CFB) when feedback == 128 => Interop.Crypto.EvpAes256Cfb128(),
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\DesImplementation.OpenSsl.cs (1)
51CipherMode.CFB when feedbackSize == 1 => Interop.Crypto.EvpDesCfb8(),
System\Security\Cryptography\Helpers.cs (1)
325return (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\TripleDesImplementation.cs (4)
77if (Mode == CipherMode.CFB) 190CipherMode.CFB, 215CipherMode.CFB, 234throw new CryptographicException(SR.Format(SR.Cryptography_CipherModeFeedbackNotSupported, feedback, CipherMode.CFB));
System\Security\Cryptography\TripleDesImplementation.OpenSsl.cs (2)
52CipherMode.CFB when feedbackSizeInBytes == 1 => Interop.Crypto.EvpDes3Cfb8(), 53CipherMode.CFB when feedbackSizeInBytes == 8 => Interop.Crypto.EvpDes3Cfb64(),