diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-01 09:45:13 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-01 09:45:13 -0700 |
commit | b5bc1a4cc5b4f0729249ebdf9d659ec387f30766 (patch) | |
tree | 2169bd2488dcce0e429f6e9b097ecab6441570ea /projecttemplates/RelyingPartyLogic/Model.Client.cs | |
parent | e9694a76f36710499d209587f554fdace99cad55 (diff) | |
download | DotNetOpenAuth-b5bc1a4cc5b4f0729249ebdf9d659ec387f30766.zip DotNetOpenAuth-b5bc1a4cc5b4f0729249ebdf9d659ec387f30766.tar.gz DotNetOpenAuth-b5bc1a4cc5b4f0729249ebdf9d659ec387f30766.tar.bz2 |
Fixed typo.
Diffstat (limited to 'projecttemplates/RelyingPartyLogic/Model.Client.cs')
-rw-r--r-- | projecttemplates/RelyingPartyLogic/Model.Client.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/projecttemplates/RelyingPartyLogic/Model.Client.cs b/projecttemplates/RelyingPartyLogic/Model.Client.cs index 472db1e..2b06958 100644 --- a/projecttemplates/RelyingPartyLogic/Model.Client.cs +++ b/projecttemplates/RelyingPartyLogic/Model.Client.cs @@ -45,7 +45,7 @@ namespace RelyingPartyLogic { /// <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) { return MessagingUtilities.EqualsConstantTime(secret, this.ClientSecret); |