2 types derived from DES
System.Security.Cryptography (2)
System\Security\Cryptography\DESCryptoServiceProvider.Unix.cs (1)
11public sealed class DESCryptoServiceProvider : DES
System\Security\Cryptography\DesImplementation.cs (1)
9internal sealed partial class DesImplementation : DES
18 references to DES
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
873[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.DES))]
netstandard (1)
netstandard.cs (1)
1864[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.DES))]
System.Security.Cryptography (8)
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (3)
97cipher = DES.Create(); 105cipher = DES.Create(); 684return DES.Create();
System\Security\Cryptography\DES.cs (3)
25public static new DES Create() 32public static new DES? Create(string algName) 34return (DES?)CryptoConfig.CreateFromName(algName);
System\Security\Cryptography\DESCryptoServiceProvider.Unix.cs (2)
13private readonly DES _impl; 19_impl = DES.Create();
System.Security.Cryptography.Algorithms (1)
System.Security.Cryptography.Algorithms.cs (1)
14[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.DES))]
System.Security.Cryptography.Pkcs (4)
Internal\Cryptography\Pal\AnyOS\ManagedPal.cs (1)
176alg = DES.Create();
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (3)
97cipher = DES.Create(); 105cipher = DES.Create(); 684return DES.Create();
System.ServiceModel.Primitives (1)
System\IdentityModel\CryptoHelper.cs (1)
259return DES.Create();// CodeQL [SM02192] Broken cryptographic algorithm DES is needed here as a requirement of SOAP protocols
System.ServiceModel.Primitives.Tests (2)
IdentityModel\SymmetricSecurityKeyTest.cs (2)
28Assert.IsAssignableFrom<DES>(mgsaalg.GetSymmetricAlgorithm(algorit)); 75return DES.Create();