2 writes to _privateKey
System.Security.Cryptography (2)
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (2)
543
_privateKey
= privateKey;
755
_privateKey
= null;
18 references to _privateKey
System.Security.Cryptography (18)
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (18)
252
get { return
_privateKey
!= null; }
548
get { return
_privateKey
; }
553
if (
_privateKey
== null ||
_privateKey
.IsInvalid)
558
return new RSAOpenSsl(
_privateKey
);
563
if (
_privateKey
== null ||
_privateKey
.IsInvalid)
568
return new DSAOpenSsl(
_privateKey
);
593
if (
_privateKey
== null ||
_privateKey
.IsInvalid)
598
return new ECDsaOpenSsl(
_privateKey
);
603
if (
_privateKey
== null ||
_privateKey
.IsInvalid)
608
return new ECDiffieHellmanOpenSsl(
_privateKey
);
752
if (
_privateKey
!= null)
754
_privateKey
.Dispose();
770
if (
_privateKey
!= null)
772
SafeEvpPKeyHandle keyHandle =
_privateKey
.DuplicateHandle();