Fix comment of variance time for Rfc6238

This commit is contained in:
Hao Kung 2017-10-24 14:43:12 -07:00
parent 9842863695
commit 707be3dca0
1 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ namespace Microsoft.AspNetCore.Identity
throw new ArgumentNullException(nameof(securityToken));
}
// Allow a variance of no greater than 90 seconds in either direction
// Allow a variance of no greater than 9 minutes in either direction
var currentTimeStep = GetCurrentTimeStepNumber();
using (var hashAlgorithm = new HMACSHA1(securityToken))
{
@ -89,7 +89,7 @@ namespace Microsoft.AspNetCore.Identity
throw new ArgumentNullException(nameof(securityToken));
}
// Allow a variance of no greater than 90 seconds in either direction
// Allow a variance of no greater than 9 minutes in either direction
var currentTimeStep = GetCurrentTimeStepNumber();
using (var hashAlgorithm = new HMACSHA1(securityToken))
{