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