From 398078c40e10baef0a4261e39b7e689f9e21f005 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Sun, 22 Sep 2019 23:18:51 +0200 Subject: Fix issue that was preventing Streebog hash from being selected manually during Pre-Boot authentication --- Library/VeraCryptLib/DcsVeraCrypt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/VeraCryptLib/DcsVeraCrypt.c b/Library/VeraCryptLib/DcsVeraCrypt.c index 10bb7d7..4cf0e05 100644 --- a/Library/VeraCryptLib/DcsVeraCrypt.c +++ b/Library/VeraCryptLib/DcsVeraCrypt.c @@ -417,7 +417,7 @@ VCAuthAsk() if (gAuthHashRqt) { do { gAuthHash = AskInt(gAuthHashMsg, gPasswordVisible); - } while (gAuthHash < 0 || gAuthHash > 4); + } while (gAuthHash < 0 || gAuthHash > 5); } } -- cgit v1.2.3