feat: implemented hash based login command.

This commit is contained in:
Lorenzo Torres 2025-02-12 20:53:42 +01:00
parent 9418c7b9a4
commit d2d12e9767
8 changed files with 56 additions and 25 deletions

View file

@ -102,10 +102,21 @@ static inline uint8_t imap_routine_login(imap_cmd cmd, client_list *node, uint8_
{
IMAP_CHECK_STATE(NO_AUTH)
IMAP_CHECK_ARGS(2)
size_t users = sizeof(imap_users)/sizeof(struct user);
uint8_t found = 0;
if ((strcmp(cmd.params[0], "lorenzo") == 0) && (strcmp(cmd.params[1], "lorenzo06") == 0)) {
IMAP_ROUTINE_OK(LOGIN)
} else {
for (size_t i=0; i < users; i++) {
if (strcmp(cmd.params[0], imap_users[i].username) == 0) {
char hash[65];
auth_sha256(cmd.params[1], hash);
if (strcmp(hash, imap_users[i].password) == 0) {
IMAP_ROUTINE_OK(LOGIN)
found = 1;
}
}
}
if (!found) {
IMAP_ROUTINE_NO(LOGIN)
}