20 references to CBC
Microsoft.AspNetCore.DataProtection (1)
Managed\ManagedAuthenticatedEncryptor.cs (1)
145retVal.Mode = CipherMode.CBC;
System.Security.Cryptography (17)
System\Security\Cryptography\Aes.cs (1)
20ModeValue = CipherMode.CBC;
System\Security\Cryptography\AesImplementation.cs (2)
95CipherMode.CBC, 117CipherMode.CBC,
System\Security\Cryptography\AesImplementation.OpenSsl.cs (3)
45(128, CipherMode.CBC) => Interop.Crypto.EvpAes128Cbc(), 50(192, CipherMode.CBC) => Interop.Crypto.EvpAes192Cbc(), 55(256, CipherMode.CBC) => Interop.Crypto.EvpAes256Cbc(),
System\Security\Cryptography\DesImplementation.cs (2)
146CipherMode.CBC, 168CipherMode.CBC,
System\Security\Cryptography\DesImplementation.OpenSsl.cs (1)
49CipherMode.CBC => Interop.Crypto.EvpDesCbc(),
System\Security\Cryptography\RC2Implementation.cs (2)
142CipherMode.CBC, 167CipherMode.CBC,
System\Security\Cryptography\RC2Implementation.OpenSsl.cs (1)
46CipherMode.CBC => Interop.Crypto.EvpRC2Cbc(),
System\Security\Cryptography\SymmetricAlgorithm.cs (2)
14ModeValue = CipherMode.CBC; 149if (!(value == CipherMode.CBC || value == CipherMode.ECB || value == CipherMode.CFB))
System\Security\Cryptography\TripleDesImplementation.cs (2)
143CipherMode.CBC, 165CipherMode.CBC,
System\Security\Cryptography\TripleDesImplementation.OpenSsl.cs (1)
50CipherMode.CBC => Interop.Crypto.EvpDes3Cbc(),
System.Security.Cryptography.Pkcs (1)
Internal\Cryptography\Pal\AnyOS\ManagedPal.cs (1)
202alg.Mode = CipherMode.CBC;
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\EncryptedXml.cs (1)
97_mode = CipherMode.CBC;