4 overrides of TryDecryptEcbCore
System.Security.Cryptography (4)
System\Security\Cryptography\AesImplementation.cs (1)
45protected override bool TryDecryptEcbCore(
System\Security\Cryptography\DesImplementation.cs (1)
96protected override bool TryDecryptEcbCore(
System\Security\Cryptography\RC2Implementation.cs (1)
82protected override bool TryDecryptEcbCore(
System\Security\Cryptography\TripleDesImplementation.cs (1)
93protected override bool TryDecryptEcbCore(
7 references to TryDecryptEcbCore
System.Security.Cryptography (7)
System\Security\Cryptography\SymmetricAlgorithm.cs (7)
442/// This method's behavior is defined by <see cref="TryDecryptEcbCore" />. 465/// This method's behavior is defined by <see cref="TryDecryptEcbCore" />. 475if (!TryDecryptEcbCore(ciphertext, decryptBuffer, paddingMode, out int written) 507/// This method's behavior is defined by <see cref="TryDecryptEcbCore" />. 513if (!TryDecryptEcbCore(ciphertext, destination, paddingMode, out int written)) 536/// This method's behavior is defined by <see cref="TryDecryptEcbCore" />. 541return TryDecryptEcbCore(ciphertext, destination, paddingMode, out bytesWritten);