我需要从标准输入读取密码,并希望std::cin
不要回显用户输入的字符...
如何禁用std :: cin的回声?
这是我目前正在使用的代码:
string passwd;
cout << "Enter the password: ";
getline( cin, passwd );
我正在寻找与操作系统无关的方法来做到这一点。 Here有两种方法可以在Windows和* nix中执行此操作。
答案 0 :(得分:60)
@ 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;
}
答案 1 :(得分:11)
标准中没有任何内容。
在unix中,您可以根据终端类型编写一些魔术字节。
如果可用,请使用getpasswd。
你可以使用system()/usr/bin/stty -echo
来禁用echo,并/usr/bin/stty echo
启用它(再次,在unix上)。
This guy explains如何在不使用“stty”的情况下执行此操作;我自己没试过。
答案 2 :(得分:7)
如果您不关心可移植性,可以在_getch()
中使用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
。我的建议是您使用*nix
系统中提供的NCurse
。
答案 3 :(得分:3)
只知道我拥有的东西,你可以通过char读取密码char,然后只打印退格(“\ b”)和'*'。