From dc1e3044c9993f61de807bdfbda79c4ebd0d09d6 Mon Sep 17 00:00:00 2001 From: xsmile Date: Fri, 28 May 2021 20:41:45 +0200 Subject: [PATCH] Disable visual feedback for the password prompt Keeping it enabled reveals the length of the password being entered. --- LinuxPBA/GetPassPhrase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LinuxPBA/GetPassPhrase.h b/LinuxPBA/GetPassPhrase.h index 2cbc0bc..bd92211 100644 --- a/LinuxPBA/GetPassPhrase.h +++ b/LinuxPBA/GetPassPhrase.h @@ -19,4 +19,4 @@ along with sedutil. If not, see . * C:E********************************************************************** */ #pragma once #include "SecureContainer.h" -std::shared_ptr GetPassPhrase(const char *prompt, bool show_asterisk=true); +std::shared_ptr GetPassPhrase(const char *prompt, bool show_asterisk=false);