Implemented interface member:
property
CspKeyContainerInfo
System.Security.Cryptography.ICspAsymmetricAlgorithm.CspKeyContainerInfo
35 references to CspKeyContainerInfo
mscorlib (2)
system\security\cryptography\rsacryptoserviceprovider.cs (2)
355
if (!
CspKeyContainerInfo
.RandomlyGenerated) {
429
if (!
CspKeyContainerInfo
.RandomlyGenerated) {
System.Core (1)
System\Security\Cryptography\X509Certificates\RSACertificateExtensions.cs (1)
133
newCert = CertificateExtensionsCommon.CopyWithPersistedCapiKey(certificate, rsaCsp.
CspKeyContainerInfo
);
System.Data (3)
fx\src\data\System\Data\SqlClient\SqlColumnEncryptionCertificateStoreProvider.cs (3)
597
privateKeyParams.KeyContainerName = ((RSACryptoServiceProvider)certificate.PrivateKey).
CspKeyContainerInfo
.KeyContainerName;
599
privateKeyParams.KeyNumber = (int)((RSACryptoServiceProvider)certificate.PrivateKey).
CspKeyContainerInfo
.KeyNumber;
604
if (((RSACryptoServiceProvider)certificate.PrivateKey).
CspKeyContainerInfo
.MachineKeyStore)
System.IdentityModel (20)
System\IdentityModel\CryptoHelper.cs (9)
789
if ( PROV_RSA_AES == rsaProvider.
CspKeyContainerInfo
.ProviderType )
791
csp.ProviderName = rsaProvider.
CspKeyContainerInfo
.ProviderName;
793
csp.KeyContainerName = rsaProvider.
CspKeyContainerInfo
.KeyContainerName;
794
csp.KeyNumber = (int)rsaProvider.
CspKeyContainerInfo
.KeyNumber;
795
if ( rsaProvider.
CspKeyContainerInfo
.MachineKeyStore )
841
if ( PROV_RSA_AES == rsaProvider.
CspKeyContainerInfo
.ProviderType )
843
csp.ProviderName = rsaProvider.
CspKeyContainerInfo
.ProviderName;
845
csp.KeyNumber = (int)rsaProvider.
CspKeyContainerInfo
.KeyNumber;
846
if ( rsaProvider.
CspKeyContainerInfo
.MachineKeyStore )
System\IdentityModel\Tokens\RsaSecurityToken.cs (1)
58
this.keyContainerInfo = rsa.
CspKeyContainerInfo
;
System\IdentityModel\Tokens\X509AsymmetricSecurityKey.cs (10)
54
if (rsaCsp != null && rsaCsp.
CspKeyContainerInfo
.ProviderType == 1)
58
csp.KeyContainerName = rsaCsp.
CspKeyContainerInfo
.KeyContainerName;
59
csp.KeyNumber = (int)rsaCsp.
CspKeyContainerInfo
.KeyNumber;
60
if (rsaCsp.
CspKeyContainerInfo
.MachineKeyStore)
437
if ((rsaCsp.
CspKeyContainerInfo
.ProviderType == 1 || rsaCsp.
CspKeyContainerInfo
.ProviderType == 12) && !rsaCsp.
CspKeyContainerInfo
.HardwareDevice)
441
csp.KeyContainerName = rsaCsp.
CspKeyContainerInfo
.KeyContainerName;
442
csp.KeyNumber = (int)rsaCsp.
CspKeyContainerInfo
.KeyNumber;
443
if (rsaCsp.
CspKeyContainerInfo
.MachineKeyStore)
System.ServiceModel (1)
System\ServiceModel\Security\SecurityUtils.cs (1)
951
return rsa.
CspKeyContainerInfo
;
System.Windows.Forms (4)
parent\parent\parent\public\Internal\NDP\Inc\mansign2.cs (4)
1471
if (!oldCsp.
CspKeyContainerInfo
.ProviderName.StartsWith("Microsoft", StringComparison.Ordinal))
1479
csp.KeyContainerName = oldCsp.
CspKeyContainerInfo
.KeyContainerName;
1480
csp.KeyNumber = (int)oldCsp.
CspKeyContainerInfo
.KeyNumber;
1481
if (oldCsp.
CspKeyContainerInfo
.MachineKeyStore)
WsatConfig (2)
Configuration\WsatConfiguration.cs (2)
657
CspKeyContainerInfo info = prov.
CspKeyContainerInfo
;
711
CspKeyContainerInfo info = prov.
CspKeyContainerInfo
;
WsatUI (2)
Configuration\WsatConfiguration.cs (2)
657
CspKeyContainerInfo info = prov.
CspKeyContainerInfo
;
711
CspKeyContainerInfo info = prov.
CspKeyContainerInfo
;