免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1243 | 回复: 1
打印 上一主题 下一主题

A problem about IO in a password mode [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-04-28 17:15 |只看该作者 |倒序浏览
I want to write a program which simply requires a password in the way like BBS login.
I can use the function tcsettemios() to change the attribution of the terminal into a state without echo.
But in my imagination the terminal should echo a '*' in stead of echo nothing, when I input any character.


When I run the program, the '*' does not appear roghtly after I pushed the key.
But when I input the enter key, the '*' all show up togather !

If I did not explain the problem clearly,
you can complie my code and then you will know the problem.

How to modify the code?
The code goes following.
Thx!

论坛徽章:
0
2 [报告]
发表于 2003-04-28 17:17 |只看该作者

A problem about IO in a password mode

#include <stdio.h>;
#include <termios.h>;
#include <unistd.h>;

#define MAX_PASS_LEN 9

struct termios oldtermios,newtermios;

void SetNoEcho(FILE *fp)
{
  tcgetattr(fileno(fp),&oldtermios);
  newtermios=oldtermios;
  newtermios.c_lflag &= ~( ECHO | ISIG);
  tcsetattr(fileno(fp),TCSANOW,&newtermios);
}
void RestoreEcho(FILE *fp)
{
  tcsetattr(fileno(fp),TCSADRAIN,&oldtermios);
  // Changing the second parameter   to TCSANOW is useless
}

int main()
{
   static char password[MAX_PASS_LEN+1];
   char star[1];
   char * ptr;
   int c=0;
   FILE * fp;
   star[0]='*';
   if((fp=fopen(ctermid(NULL),"w+")==NULL)
      return 1;
   fputs("Enter your Password:",fp);
   ptr = password;
   while(c!=EOF && c!='\n')
  {
      SetNoEcho(fp);
      c=getc(fp);
      if(ptr<&password[MAX_PASS_LEN])
         *ptr++=c;
      RestoreEcho(fp);
      write(fileno(stdout),star,1); // Here I have tried putc()
      //fflush(stdout); //Here I have tried tcdrain()
   }
   *ptr=0;
   putc('\n',fp);
   fclose(fp);
   printf("The password you have entered is \n%s\n",password);
   return 0;
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP