標準入力からパスワードを読み取る必要があり、std::cin
ユーザーが入力した文字をエコーしません...
Std :: cinからのエコーを無効にするにはどうすればよいですか?
これが私が現在使用しているコードです:
string passwd;
cout << "Enter the password: ";
getline( cin, passwd );
これを行うためのOSに依存しない方法を探しています。 ここ Windowsと* nixの両方でこれを行う方法があります。
@ wrang-wrangの答えは本当に良かったが、私のニーズを満たしていませんでした。これは( this に基づいた)最終的なコードのようになります。
#ifdef WIN32
#include <windows.h>
#else
#include <termios.h>
#include <unistd.h>
#endif
void SetStdinEcho(bool enable = true)
{
#ifdef WIN32
HANDLE hStdin = GetStdHandle(STD_INPUT_HANDLE);
DWORD mode;
GetConsoleMode(hStdin, &mode);
if( !enable )
mode &= ~ENABLE_ECHO_INPUT;
else
mode |= ENABLE_ECHO_INPUT;
SetConsoleMode(hStdin, mode );
#else
struct termios tty;
tcgetattr(STDIN_FILENO, &tty);
if( !enable )
tty.c_lflag &= ~ECHO;
else
tty.c_lflag |= ECHO;
(void) tcsetattr(STDIN_FILENO, TCSANOW, &tty);
#endif
}
使用例:
#include <iostream>
#include <string>
int main()
{
SetStdinEcho(false);
std::string password;
std::cin >> password;
SetStdinEcho(true);
std::cout << password << std::endl;
return 0;
}
移植性を気にしない場合は、VC
で_getch()
を使用できます。
_#include <iostream>
#include <string>
#include <conio.h>
int main()
{
std::string password;
char ch;
const char ENTER = 13;
std::cout << "enter the password: ";
while((ch = _getch()) != ENTER)
{
password += ch;
std::cout << '*';
}
}
_
_wide characters
_にはgetwch()
もあります。私のアドバイスは、_*nix
_システムでも利用可能な NCurse
を使用することです。
私が持っているものだけを考えれば、パスワードを文字ごとに読み取ることができ、その後にバックスペース(「\ b」)とおそらく「*」を出力するだけです。