3 types derived from TripleDES
System.Security.Cryptography (3)
System\Security\Cryptography\Cng.NotSupported.cs (1)
357public sealed partial class TripleDESCng : TripleDES
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (1)
10public sealed class TripleDESCryptoServiceProvider : TripleDES
System\Security\Cryptography\TripleDesImplementation.cs (1)
9internal sealed partial class TripleDesImplementation : TripleDES
27 references to TripleDES
Microsoft.AspNetCore.DataProtection.Tests (2)
XmlEncryption\CertificateXmlEncryptionTests.cs (2)
20var symmetricAlgorithm = TripleDES.Create();
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
933[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.TripleDES))]
netstandard (1)
netstandard.cs (1)
1940[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.TripleDES))]
System.Security.Cryptography (9)
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (4)
113cipher = TripleDES.Create(); 118cipher = TripleDES.Create(); 268cipher = TripleDES.Create(); 633return TripleDES.Create();
System\Security\Cryptography\TripleDES.cs (3)
24public static new TripleDES Create() 31public static new TripleDES? Create(string str) 33return (TripleDES?)CryptoConfig.CreateFromName(str);
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (2)
12private readonly TripleDES _impl; 18_impl = TripleDES.Create();
System.Security.Cryptography.Algorithms (1)
System.Security.Cryptography.Algorithms.cs (1)
63[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.TripleDES))]
System.Security.Cryptography.Pkcs (5)
Internal\Cryptography\Pal\AnyOS\ManagedPal.cs (1)
181alg = TripleDES.Create();
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (4)
113cipher = TripleDES.Create(); 118cipher = TripleDES.Create(); 268cipher = TripleDES.Create(); 633return TripleDES.Create();
System.Security.Cryptography.Xml (7)
System\Security\Cryptography\Xml\EncryptedXml.cs (3)
625else if (symKey is TripleDES) 928if (symmetricAlgorithm is TripleDES) 982if (symmetricAlgorithm is TripleDES)
System\Security\Cryptography\Xml\SymmetricKeyWrap.cs (4)
39TripleDES? tripleDES = null; 45tripleDES = TripleDES.Create(); 78TripleDES? tripleDES = null; 84tripleDES = TripleDES.Create();
System.ServiceModel.Primitives (1)
System\IdentityModel\CryptoHelper.cs (1)
245return TripleDES.Create();// CodeQL [SM02192] Weak cryptographic algorithm TripleDES is needed here as a requirement of SOAP protocols