SASL SCRAM: Apply changes from code review

This commit is contained in:
Patrick Okraku
2023-11-06 15:04:15 +01:00
committed by Patrick
parent 9b76b557ec
commit c82ad32171
3 changed files with 14 additions and 4 deletions

View File

@@ -43,7 +43,7 @@ typedef enum
SCRAM_SUCCESS
} scram_status;
scram_session *scram_create_session (const char *digset, const char *username, const char *password);
scram_session *scram_session_create (const char *digset, const char *username, const char *password);
void scram_free_session (scram_session *session);
scram_status scram_process (scram_session *session, const char *input, char **output, size_t *output_len);