4 writes to privateKey
System.IdentityModel (4)
System\IdentityModel\Tokens\X509AsymmetricSecurityKey.cs (4)
45
this.
privateKey
= this.certificate.PrivateKey;
49
this.
privateKey
= CngLightup.GetRSAPrivateKey(this.certificate);
64
this.
privateKey
= new RSACryptoServiceProvider(csp);
69
this.
privateKey
= CngLightup.GetDSAPrivateKey(this.certificate);
4 references to privateKey
System.IdentityModel (4)
System\IdentityModel\Tokens\X509AsymmetricSecurityKey.cs (4)
50
if (this.
privateKey
!= null)
52
RSACryptoServiceProvider rsaCsp = this.
privateKey
as RSACryptoServiceProvider;
71
if (certificate.HasPrivateKey && this.
privateKey
== null)
77
return this.
privateKey
;