diff options
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/IClientDescription.cs')
-rw-r--r-- | src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/IClientDescription.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/IClientDescription.cs b/src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/IClientDescription.cs index ebbe1f2..8b1988c 100644 --- a/src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/IClientDescription.cs +++ b/src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/IClientDescription.cs @@ -64,7 +64,7 @@ namespace DotNetOpenAuth.OAuth2 { /// <returns><c>true</c> if the secret matches the one in the authorization server's record for the client; <c>false</c> otherwise.</returns> /// <remarks> /// All string equality checks, whether checking secrets or their hashes, - /// should be done using <see cref="MessagingUtilites.EqualsConstantTime"/> to mitigate timing attacks. + /// should be done using <see cref="MessagingUtilities.EqualsConstantTime"/> to mitigate timing attacks. /// </remarks> bool IsValidClientSecret(string secret); } @@ -125,7 +125,7 @@ namespace DotNetOpenAuth.OAuth2 { /// <returns><c>true</c> if the secret matches the one in the authorization server's record for the client; <c>false</c> otherwise.</returns> /// <remarks> /// All string equality checks, whether checking secrets or their hashes, - /// should be done using <see cref="MessagingUtilites.EqualsConstantTime"/> to mitigate timing attacks. + /// should be done using <see cref="MessagingUtilities.EqualsConstantTime"/> to mitigate timing attacks. /// </remarks> bool IClientDescription.IsValidClientSecret(string secret) { Requires.NotNullOrEmpty(secret, "secret"); |