开发者

password in c programming, where do i place the function call for another function if the password is correct [closed]

开发者_运维技巧 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 12 years ago.
#include<stdio.h>
#include<conio.h>

char pw[25],ch;
int i;
 main()
{


        printf("\n\nEnter password");
        while(1)
        {
        if(i<0)
        i=0;
        ch=getch();
        if(ch==13)
        break;
        if(ch==8) 
        {
        putch('\b');
        putch(NULL);
        putch('\b');
        -i;
        continue;
        }
        pw[i++]=ch;
        ch='*';
        putch(ch);
        }
        pw[i]='\0';
        printf("\n\n%s",pw);


    getch();
}


This requirement usually means you want to ensure that casual passers-by cannot see what the user typed as a password by accident. This might be by turning off the echo (this is what Unix usually does) or by echoing asterisks or something similar instead of the actual characters entered by the user.

The C standard alone does not help here. You have to define the environment in which you are going to be running. The techniques used in a GUI application are different from those used in a command line application.

Many versions of Unix provide a getpass() function, but it is not defined in POSIX. As mentioned, it saves the terminal mode, turns off echoing, reads characters (normally discarding anything after the 8th character) and then reinstates the terminal mode before returning.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜