1. 程式人生 > >密碼驗證程序

密碼驗證程序

you bre get word strcmp pri def 容易 pan

#include<string.h>
#include<stdio.h>
#define PASSWORD_SIZE 100
#define PASSWORD "myGOODpassword\n"
int main()
{
    int count=0;
    char buff[PASSWORD_SIZE];
    for(;;)
    {
        printf("please input you passsword:");
        fgets(&buff[0],PASSWORD_SIZE,stdin);
        if(strcmp(&buff[0
],PASSWORD)) printf("password not right\ntry again:"); else break; if(++count>3) return -1; } printf("hello,carlos"); return 0; }

最基礎的,把密碼寫在程序裏面的驗證方法,容易被反匯編找出的那種,高級的加密方式後面再說。

密碼驗證程序