20 references to ECB
System.Security.Cryptography (16)
System\Security\Cryptography\AesImplementation.cs (2)
52CipherMode.ECB, 73CipherMode.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)
103CipherMode.ECB, 124CipherMode.ECB,
System\Security\Cryptography\DesImplementation.OpenSsl.cs (1)
50CipherMode.ECB => Interop.Crypto.EvpDesEcb(),
System\Security\Cryptography\Helpers.cs (1)
28return cipherMode != CipherMode.ECB;
System\Security\Cryptography\RC2Implementation.cs (2)
93CipherMode.ECB, 117CipherMode.ECB,
System\Security\Cryptography\RC2Implementation.OpenSsl.cs (1)
47CipherMode.ECB => Interop.Crypto.EvpRC2Ecb(),
System\Security\Cryptography\SymmetricAlgorithm.cs (1)
149if (!(value == CipherMode.CBC || value == CipherMode.ECB || value == CipherMode.CFB))
System\Security\Cryptography\TripleDesImplementation.cs (2)
100CipherMode.ECB, 121CipherMode.ECB,
System\Security\Cryptography\TripleDesImplementation.OpenSsl.cs (1)
51CipherMode.ECB => Interop.Crypto.EvpDes3Ecb(),
System.Security.Cryptography.Xml (4)
System\Security\Cryptography\Xml\EncryptedXml.cs (2)
731if (_mode == CipherMode.ECB) 783if (_mode != CipherMode.ECB)
System\Security\Cryptography\Xml\SymmetricKeyWrap.cs (2)
136aes.Mode = CipherMode.ECB; 199aes.Mode = CipherMode.ECB;