58

我需要从标准输入中读取密码,并且不想std::cin回显用户键入的字符...

如何禁用 std::cin 的回声?

这是我目前正在使用的代码:

string passwd;
cout << "Enter the password: ";
getline( cin, passwd );

我正在寻找一种与操作系统无关的方法来做到这一点。 这里有在 Windows 和 *nix 中执行此操作的方法。

4

4 回答 4

70

@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;
}
于 2009-09-21T15:09:59.287 回答
10

标准中没有任何内容。

在 unix 中,您可以根据终端类型编写一些魔术字节。

如果可用,请使用 getpasswd 。

您可以 system()/usr/bin/stty -echo禁用回声,并/usr/bin/stty echo启用它(同样,在 unix 上)。

这家伙解释了如何在不使用“stty”的情况下做到这一点;我自己没试过。

于 2009-09-11T21:50:22.683 回答
7

如果你不关心可移植性,你可以使用_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

于 2009-09-11T22:05:37.307 回答
1

只知道我有什么,您可以逐个字符地读取密码字符,然后打印退格键(“\ b”),也许还有“*”。

于 2009-09-11T21:57:04.160 回答