diff --git a/src/Microsoft.AspNet.Identity.Core/Rfc6238AuthenticationService.cs b/src/Microsoft.AspNet.Identity.Core/Rfc6238AuthenticationService.cs index 766f558..5f10947 100644 --- a/src/Microsoft.AspNet.Identity.Core/Rfc6238AuthenticationService.cs +++ b/src/Microsoft.AspNet.Identity.Core/Rfc6238AuthenticationService.cs @@ -79,7 +79,7 @@ public static int GenerateCode(SecurityToken securityToken, string modifier = nu throw new ArgumentNullException("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.GetDataNoClone())) { @@ -94,7 +94,7 @@ public static bool ValidateCode(SecurityToken securityToken, int code, string mo throw new ArgumentNullException("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.GetDataNoClone())) {