write first version of user system

This commit is contained in:
2024-05-21 13:12:50 +00:00
parent 5ae88e3312
commit d2a15115cf
10 changed files with 399 additions and 53 deletions

View File

@ -1,4 +1,12 @@
#ifndef DATA_H
#define DATA_H
#include <cstdint>
#include "utils.h"
struct FullUserData {
char username[21];
hash_t password_hash;
char name[21];
char mailAddr[31];
uint8_t privilege;
};
#endif