如何使用getch()将密码作为星号回显

时间:2013-06-16 07:00:41

标签: c

我试图制作一个程序,输入用户输入的密码并将密码存储为用户输入的字符串,但显示应包含星号,使用getch()函数。我很喜欢这个。如果有人可以帮忙吗?

1 个答案:

答案 0 :(得分:2)

假设您在Windows上运行且编码为ASCII 试试这个:

#include <stdio.h>
#include <string.h>
#include <conio.h>
int main()
{
    char buffer[256] = {0};
    char password[] = "password";
    char c;
    int pos = 0;

    printf("%s", "Enter password: ");
    do {
        c = getch();

        if( isprint(c) ) 
        {
            buffer[ pos++ ] = c;
            printf("%c", '*');
        }
        else if( c == 8 && pos )
        {
            buffer[ pos-- ] = '\0';
            printf("%s", "\b \b");
        }
    } while( c != 13 );

    if( !strcmp(buffer, password) )
        printf("\n%s\n", "Logged on succesfully!");
    else
        printf("\n%s\n", "Incorrect login!");
    return 0;
}