45fan.com - 路饭网

搜索: 您的位置主页 > 手机频道 > 阅读资讯:Linux与Windows下实现密码隐藏输入方法介绍

Linux与Windows下实现密码隐藏输入方法介绍

2016-08-30 15:09:38 来源:www.45fan.com 【

Linux与Windows下实现密码隐藏输入方法介绍

Linux 下实现:

#include "termios.h"

struct termios new_t, old_t;
tcgetattr(0, &old_t);
new_t = old_t;
new_t.c_lflag &= (~ICANON);
new_t.c_lflag &= (~ECHO);
new_t.c_cc[VTIME] = 0;
new_t.c_cc[VMIN] = 1;
tcsetattr(0, TCSANOW, &new_t);

tcsetattr(0, TCSANOW, &old_t);

TC 下实现输入变为"*"号:

#include <stdio.h>
 
int inputpw (char *password,int len); /*len为密码的最长长度*/
 
main (void)
{ int l;
char pw[13];
l=inputpw(pw,12);
printf("/n刚才输入%d位的密码:%s",l,pw);
return 0;
}
 
int inputpw(char *password,int len)
{
int i=0; /*密码数组索引值,同时也表示记录已显示星的数目,初始化值为0*/
char ch;
printf("/n请输入密码(长度小于等于%d位): ",len);
fflush(stdin); /*清洗流,以防妨碍密码正确输入*/
for ( ch = getch(); ch!=13;ch = getch() ) /*若用户输入回车则结束密码输入*/
{
if (i>=len) continue; /*如果已到达len指定的长度则……*/
 
if ( ch == 8 ) /*若用户按了退格键则……*/
{
if ( i > 0 ) /*如果已显示星数不为0则……*/
{
printf("/b"); /*退一个格*/
password[--i]='/0'; /*password[i-1]的值改为'/0', 已显示星数减一,数组索引值减一*/
}
putchar(0); /*显示空字符*/
printf("/b"); /*退一个格*/
continue ;
}
 
if( ch<32 || ch>127 ) continue; /*密码只能为ASCII码值为32-127的字符*/
 
printf("*"); /*上述情况都不是则显示一个星*/
password[i++]=ch; /*将ch赋给password[i],已显示星数加一,数组索引值加一*/
}
password[i] = '/0'; /*设置结尾的空字符*/
return i;
 

本文地址:http://www.45fan.com/a/luyou/69814.html
Tags: 实现 linux windows
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部