4 overrides of TryEncryptEcbCore
System.Security.Cryptography (4)
System\Security\Cryptography\AesImplementation.cs (1)
66protected override bool TryEncryptEcbCore(
System\Security\Cryptography\DesImplementation.cs (1)
117protected override bool TryEncryptEcbCore(
System\Security\Cryptography\RC2Implementation.cs (1)
106protected override bool TryEncryptEcbCore(
System\Security\Cryptography\TripleDesImplementation.cs (1)
114protected override bool TryEncryptEcbCore(
7 references to TryEncryptEcbCore
System.Security.Cryptography (7)
System\Security\Cryptography\SymmetricAlgorithm.cs (7)
560/// This method's behavior is defined by <see cref="TryEncryptEcbCore" />. 583/// This method's behavior is defined by <see cref="TryEncryptEcbCore" />. 594if (!TryEncryptEcbCore(plaintext, buffer, paddingMode, out int written) || 625/// This method's behavior is defined by <see cref="TryEncryptEcbCore" />. 631if (!TryEncryptEcbCore(plaintext, destination, paddingMode, out int written)) 654/// This method's behavior is defined by <see cref="TryEncryptEcbCore" />. 659return TryEncryptEcbCore(plaintext, destination, paddingMode, out bytesWritten);