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