我需要从标准输入中读取密码,并且不想std::cin
回显用户键入的字符...
如何禁用 std::cin 的回声?
这是我目前正在使用的代码:
string passwd;
cout << "Enter the password: ";
getline( cin, passwd );
我正在寻找一种与操作系统无关的方法来做到这一点。 这里有在 Windows 和 *nix 中执行此操作的方法。
我需要从标准输入中读取密码,并且不想std::cin
回显用户键入的字符...
如何禁用 std::cin 的回声?
这是我目前正在使用的代码:
string passwd;
cout << "Enter the password: ";
getline( cin, passwd );
我正在寻找一种与操作系统无关的方法来做到这一点。 这里有在 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;
}
标准中没有任何内容。
在 unix 中,您可以根据终端类型编写一些魔术字节。
如果可用,请使用 getpasswd 。
您可以 system()/usr/bin/stty -echo
禁用回声,并/usr/bin/stty echo
启用它(同样,在 unix 上)。
这家伙解释了如何在不使用“stty”的情况下做到这一点;我自己没试过。
如果你不关心可移植性,你可以使用_getch()
in VC
.
#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 << '*';
}
}
还有getwch()
用于wide characters
. 我的建议是您使用系统中也NCurse
可用的*nix
。
只知道我有什么,您可以逐个字符地读取密码字符,然后打印退格键(“\ b”),也许还有“*”。