20 references to ECB
System.Security.Cryptography (16)
System\Security\Cryptography\AesImplementation.cs (2)
52
CipherMode.
ECB
,
73
CipherMode.
ECB
,
System\Security\Cryptography\AesImplementation.OpenSsl.cs (3)
46
(128, CipherMode.
ECB
) => Interop.Crypto.EvpAes128Ecb(),
51
(192, CipherMode.
ECB
) => Interop.Crypto.EvpAes192Ecb(),
56
(256, CipherMode.
ECB
) => Interop.Crypto.EvpAes256Ecb(),
System\Security\Cryptography\DesImplementation.cs (2)
103
CipherMode.
ECB
,
124
CipherMode.
ECB
,
System\Security\Cryptography\DesImplementation.OpenSsl.cs (1)
50
CipherMode.
ECB
=> Interop.Crypto.EvpDesEcb(),
System\Security\Cryptography\Helpers.cs (1)
28
return cipherMode != CipherMode.
ECB
;
System\Security\Cryptography\RC2Implementation.cs (2)
93
CipherMode.
ECB
,
117
CipherMode.
ECB
,
System\Security\Cryptography\RC2Implementation.OpenSsl.cs (1)
49
CipherMode.
ECB
=> Interop.Crypto.EvpRC2Ecb(),
System\Security\Cryptography\SymmetricAlgorithm.cs (1)
149
if (!(value == CipherMode.CBC || value == CipherMode.
ECB
|| value == CipherMode.CFB))
System\Security\Cryptography\TripleDesImplementation.cs (2)
100
CipherMode.
ECB
,
121
CipherMode.
ECB
,
System\Security\Cryptography\TripleDesImplementation.OpenSsl.cs (1)
51
CipherMode.
ECB
=> Interop.Crypto.EvpDes3Ecb(),
System.Security.Cryptography.Xml (4)
System\Security\Cryptography\Xml\EncryptedXml.cs (2)
731
if (_mode == CipherMode.
ECB
)
783
if (_mode != CipherMode.
ECB
)
System\Security\Cryptography\Xml\SymmetricKeyWrap.cs (2)
136
aes.Mode = CipherMode.
ECB
;
199
aes.Mode = CipherMode.
ECB
;