3 writes to authenticator
System.ServiceModel (3)
System\ServiceModel\Channels\PeerSecurityHelpers.cs (3)
342
this.
authenticator
= authenticator;
348
this.
authenticator
= PeerSecurityHelpers.ComputeHash(certificate, password);
354
this.
authenticator
= PeerSecurityHelpers.ComputeHash(claim, password);
12 references to authenticator
System.ServiceModel (12)
System\ServiceModel\Channels\PeerSecurityHelpers.cs (12)
411
if (!(this.
authenticator
!= null))
415
bool result = PeerSecurityHelpers.Authenticate(claim, password, this.
authenticator
);
421
isValid = this.
authenticator
!= null;
429
writer.WriteString(Convert.ToBase64String(this.
authenticator
));
472
if (this.
authenticator
!= null && that.
authenticator
!= null && this.
authenticator
.Length == that.
authenticator
.Length)
474
for (int i = 0; i < this.
authenticator
.Length; i++)
476
if (this.
authenticator
[i] != that.
authenticator
[i])
486
return isValid ? this.
authenticator
.GetHashCode() : 0;