From 67410e0151c907368bb74fa5148e6dd0965e699f Mon Sep 17 00:00:00 2001 From: Andrew Gregory Date: Fri, 19 Nov 2021 20:30:38 +0800 Subject: [PATCH] Add support for all digit counts between 6 and 10. --- apps/authentiwatch/interface.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/authentiwatch/interface.html b/apps/authentiwatch/interface.html index b0ac7de45..12c0c1d8d 100644 --- a/apps/authentiwatch/interface.html +++ b/apps/authentiwatch/interface.html @@ -159,7 +159,7 @@ function editToken(id) { markup += 'Period:'; markup += 'Count:'; markup += 'Digits:'; - markup += selectMarkup('digits', ['6','8'], tokens[id].digits); + markup += selectMarkup('digits', ['6','7','8','9','10'], tokens[id].digits); markup += ''; markup += 'Hash:'; markup += selectMarkup('algorithm', ['SHA1','SHA256','SHA512'], tokens[id].algorithm);