4 overrides of TryEncryptEcbCore
System.Security.Cryptography (4)
System\Security\Cryptography\AesImplementation.cs (1)
118protected 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)
609/// This method's behavior is defined by <see cref="TryEncryptEcbCore" />. 632/// This method's behavior is defined by <see cref="TryEncryptEcbCore" />. 643if (!TryEncryptEcbCore(plaintext, buffer, paddingMode, out int written) || 674/// This method's behavior is defined by <see cref="TryEncryptEcbCore" />. 680if (!TryEncryptEcbCore(plaintext, destination, paddingMode, out int written)) 703/// This method's behavior is defined by <see cref="TryEncryptEcbCore" />. 708return TryEncryptEcbCore(plaintext, destination, paddingMode, out bytesWritten);