18 references to GetCertHash
System (2)
net\System\Net\_SecureChannel.cs (2)
715
byte[] guessedThumbPrint = selectedCert == null? null: selectedCert.
GetCertHash
();
832
byte [] guessedThumbPrint = selectedCert.
GetCertHash
();
System.IdentityModel (6)
System\IdentityModel\Claims\X509CertificateClaimSet.cs (3)
168
byte[] thumbprint = this.certificate.
GetCertHash
();
243
yield return new Claim(ClaimTypes.Thumbprint, this.certificate.
GetCertHash
(), Rights.Identity);
247
yield return new Claim(ClaimTypes.Thumbprint, this.certificate.
GetCertHash
(), Rights.PossessProperty);
System\IdentityModel\Selectors\X509CertificateValidator.cs (1)
129
certificates = store.Find(X509FindType.FindByThumbprint, certificate.
GetCertHash
(), false);
System\IdentityModel\Tokens\X509ThumbprintKeyIdentifierClause.cs (1)
32
return certificate.
GetCertHash
();
System\IdentityModel\X509Util.cs (1)
192
string thumbprint = Convert.ToBase64String(certificate.
GetCertHash
());
System.ServiceModel (6)
System\ServiceModel\Security\IdentityModelServiceAuthorizationManager.cs (1)
371
x509SecurityToken.Certificate.
GetCertHash
(),
System\ServiceModel\Security\ReceiveSecurityHeader.cs (2)
2078
byte[] outOfBandCertificateThumbprint = ((X509SecurityToken)outOfBandToken).Certificate.
GetCertHash
();
2079
byte[] replyCertificateThumbprint = ((X509SecurityToken)replyToken).Certificate.
GetCertHash
();
System\ServiceModel\X509CertificateEndpointIdentity.cs (3)
24
base.Initialize(new Claim(ClaimTypes.Thumbprint, certificate.
GetCertHash
(), Rights.PossessProperty));
37
base.Initialize(new Claim(ClaimTypes.Thumbprint, primaryCertificate.
GetCertHash
(), Rights.PossessProperty));
64
base.Initialize(new Claim(ClaimTypes.Thumbprint, certificate.
GetCertHash
(), Rights.PossessProperty));
WsatConfig (2)
Configuration\WsatServiceCertificate.cs (2)
61
byte[] sslHash = this.cert.
GetCertHash
();
138
byte[] sslHash = this.cert.
GetCertHash
();
WsatUI (2)
Configuration\WsatServiceCertificate.cs (2)
61
byte[] sslHash = this.cert.
GetCertHash
();
138
byte[] sslHash = this.cert.
GetCertHash
();