簡易的使用者賬號註冊和登入驗證程式(1)

2021-07-31 08:56:29 字數 958 閱讀 6047

#include #include //使用者登入驗證系統

struct log //定義log結構用於儲存使用者賬號和密碼資訊

;void logging(struct log person); //登入函式

void regis(struct log person); //註冊函式

void jiami(char*p); //密碼加密函式

int main()

switch (choice)

}while(choice!=3);

return 0;

} void logging(struct log person)

else

}if (flag==1) printf("使用者名稱或密碼不正確\n"); //否則登入失敗

} if (fclose(fp)) }

void regis(struct log person)

else

fscanf(fp,"%s %s",pername,perpassword);

}fclose(fp);

} } while(flag==1);

strcpy(s,person.name);

strcat(s," ");

strcat(s,person.password);

strcat(s,"\n");

if ((fp=fopen("logging.txt","a"))==null) //如果註冊檔案不存在

else

}}else

else

} if (fclose(fp)) }

void jiami(char*p) //對密碼進行加密

}

python 實現 登入驗證賬號和密碼

可以支援多個使用者登入 提示,通過列表存多個賬戶資訊 dic jack lily count 0 while true name input u if name not in dic print 使用者不存在 continue with open users list.txt r as f lock...

使用者註冊登入 和 資料寫入檔案的註冊登入

class user def init self,username,password self.username username self.password password class account def init self self.user list 目的是儲存使用者資訊 pass de...

django vue 登入驗證和使用者資訊的儲存

axios.js axios 配置 axios.defaults.withcredentials true 讓ajax攜帶cookie 介面錯誤狀態處理,也就是說無響應時的處理 error export default axios login.vue this.axios.get login the...