您好我写了一个简单的c prog来接受密码,同时diplaying * 来隐藏输入。但输入的最后一个字符的*不会出现在正确的位置。 代码在
之下int main(){
int choice = 0;
char pass[8];
FILE *input;
FILE *output;
struct termios initial_settings, new_settings;
if(!isatty(fileno(stdout))){
fprintf(stderr,"Not a terminal \n");
}
input = fopen("/dev/tty","r");
output = fopen("/dev/tty","w");
if(!input || !output){
fprintf(stderr,"error opening");
exit(1);
}
tcgetattr(fileno(input),&initial_settings);
new_settings = initial_settings;
new_settings.c_lflag &= ~ICANON;
new_settings.c_lflag &= ~ECHO;
new_settings.c_cc[VMIN] = 1;
new_settings.c_cc[VTIME] = 0;
new_settings.c_lflag &= ~ISIG;
if(tcsetattr(fileno(input), TCSANOW, &new_settings) != 0) {
fprintf(stderr,"could not set attributes\n");
}
int count = 0;
char ch;
printf("Please enter the password: ");
while (count<8){
ch = fgetc(input);
if(ch == '\n' || ch == '\r'){
break;
}else{
fputc('*',stdout);
pass[count] = ch;
count++;
}
tcdrain(fileno(stdout));
}
fprintf(output,"you have entered :%s \n",pass);
tcsetattr(fileno(input),TCSANOW,&initial_settings);
exit(0);
}
输出如下:
请输入密码:* * * * * * *
你输入的内容:12345678
* pasman @ pasman-laptop:〜$
它是一个8个字符的密码&amp;请注意,7 * s按预期显示,但最后一个*出现在main的末尾。
答案 0 :(得分:1)
你正在混合stdio和另一个流输出,直接与tty交谈。它们有不同的缓冲区,并在不同的时间刷新。你真的应该只使用其中一个。
答案 1 :(得分:0)
这是因为你在写下最后一个*之前打破了:所以 添加
fputc('*',stdout);
前
tcdrain(fileno(stdout));