From 707be3dca0e4ea363172c7cd22d22d6bf4b8c50e Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Tue, 24 Oct 2017 14:43:12 -0700 Subject: [PATCH] Fix comment of variance time for Rfc6238 --- .../Rfc6238AuthenticationService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.Extensions.Identity.Core/Rfc6238AuthenticationService.cs b/src/Microsoft.Extensions.Identity.Core/Rfc6238AuthenticationService.cs index faf92e25f3..9a58683d22 100644 --- a/src/Microsoft.Extensions.Identity.Core/Rfc6238AuthenticationService.cs +++ b/src/Microsoft.Extensions.Identity.Core/Rfc6238AuthenticationService.cs @@ -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)) {