7 instantiations of CspParameters
Microsoft.AspNetCore.Testing (1)
FakeSslCertificateFactory.cs (1)
53new CspParameters(24, "Microsoft Enhanced RSA and AES Cryptographic Provider", Guid.NewGuid().ToString()))
Microsoft.Build.Tasks.Core (1)
ManifestUtil\mansign2.cs (1)
481CspParameters csp = new CspParameters();
System.Security.Cryptography (4)
System\Security\Cryptography\PasswordDeriveBytes.cs (4)
31public PasswordDeriveBytes(string strPassword, byte[]? rgbSalt) : this(strPassword, rgbSalt, new CspParameters()) { } 33public PasswordDeriveBytes(byte[] password, byte[]? salt) : this(password, salt, new CspParameters()) { } 37this(strPassword, rgbSalt, strHashName, iterations, new CspParameters()) { } 41this(password, salt, hashName, iterations, new CspParameters()) { }
System.ServiceModel.Primitives (1)
System\IdentityModel\Tokens\X509AsymmetricSecurityKey.cs (1)
49CspParameters csp = new CspParameters();
26 references to CspParameters
Microsoft.Build.Tasks.Core (1)
ManifestUtil\mansign2.cs (1)
481CspParameters csp = new CspParameters();
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
870[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.CspParameters))]
netstandard (1)
netstandard.cs (1)
1861[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.CspParameters))]
System.Security.Cryptography (19)
System\Security\Cryptography\CspKeyContainerInfo.NotSupported.cs (1)
11public CspKeyContainerInfo(CspParameters parameters) { throw GetPlatformNotSupported(); }
System\Security\Cryptography\CspParameters.cs (1)
71internal CspParameters(CspParameters parameters)
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (4)
58public DSACryptoServiceProvider(int dwKeySize, CspParameters parameters) 60throw new PlatformNotSupportedException(SR.Format(SR.Cryptography_CAPI_Required, nameof(CspParameters))); 64public DSACryptoServiceProvider(CspParameters parameters) 66throw new PlatformNotSupportedException(SR.Format(SR.Cryptography_CAPI_Required, nameof(CspParameters)));
System\Security\Cryptography\PasswordDeriveBytes.cs (5)
28private readonly CspParameters? _cspParams; 47public PasswordDeriveBytes(string strPassword, byte[]? rgbSalt, CspParameters? cspParams) : 52public PasswordDeriveBytes(byte[] password, byte[]? salt, CspParameters? cspParams) : 57public PasswordDeriveBytes(string strPassword, byte[]? rgbSalt, string strHashName, int iterations, CspParameters? cspParams) : 61public PasswordDeriveBytes(byte[] password, byte[]? salt, string hashName, int iterations, CspParameters? cspParams)
System\Security\Cryptography\RNGCryptoServiceProvider.cs (4)
14public RNGCryptoServiceProvider() : this((CspParameters?)null) { } 15public RNGCryptoServiceProvider(string str) : this((CspParameters?)null) { } 16public RNGCryptoServiceProvider(byte[] rgb) : this((CspParameters?)null) { } 18public RNGCryptoServiceProvider(CspParameters? cspParams)
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (4)
31public RSACryptoServiceProvider(int dwKeySize, CspParameters parameters) => 32throw new PlatformNotSupportedException(SR.Format(SR.Cryptography_CAPI_Required, nameof(CspParameters))); 35public RSACryptoServiceProvider(CspParameters parameters) => 36throw new PlatformNotSupportedException(SR.Format(SR.Cryptography_CAPI_Required, nameof(CspParameters)));
System.Security.Cryptography.Csp (1)
System.Security.Cryptography.Csp.cs (1)
6[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.CspParameters))]
System.Security.Cryptography.Pkcs (1)
System\Security\Cryptography\Pkcs\CmsSigner.cs (1)
80public CmsSigner(CspParameters parameters) => throw new PlatformNotSupportedException();
System.Security.Permissions (1)
System\Security\Permissions\KeyContainerPermissionAccessEntry.cs (1)
14public KeyContainerPermissionAccessEntry(CspParameters parameters, KeyContainerPermissionFlags flags) { }
System.ServiceModel.Primitives (1)
System\IdentityModel\Tokens\X509AsymmetricSecurityKey.cs (1)
49CspParameters csp = new CspParameters();