pending.h revision c880061f511e85d55afe3966f5eda0df7c3ebb56
1// pending.h - header for pending.c
2
3// password.c
4#define MAX_SALT_LEN  20 //3 for id, 16 for key, 1 for '\0'
5#define SYS_FIRST_ID  100
6#define SYS_LAST_ID   999
7void is_valid_username(const char *name);
8int read_password(char * buff, int buflen, char* mesg);
9int update_password(char *filename, char* username, char* encrypted);
10