5 references to CspParameters
Microsoft.AspNetCore.Testing (1)
FakeSslCertificateFactory.cs (1)
53
new
CspParameters
(24, "Microsoft Enhanced RSA and AES Cryptographic Provider", Guid.NewGuid().ToString()))
Microsoft.Build.Tasks.Core (1)
ManifestUtil\CngLightup.cs (1)
541
CspParameters cspParameters = new
CspParameters
(cspInfo.ProviderType, cspInfo.ProviderName, cspInfo.KeyContainerName)
System.Security.Cryptography (3)
System\Security\Cryptography\CspParameters.cs (3)
52
public CspParameters() :
this
(CapiHelper.DefaultRsaProviderType, null, null) { }
54
public CspParameters(int dwTypeIn) :
this
(dwTypeIn, null, null) { }
55
public CspParameters(int dwTypeIn, string? strProviderNameIn) :
this
(dwTypeIn, strProviderNameIn, null) { }