fix generate password function

This commit is contained in:
Nikola Petrov 2023-08-19 15:26:12 +02:00
parent 05cb50acb4
commit 9b0a781f05

View File

@ -19,11 +19,11 @@ void generate_password(char* password)
{
srand(time(NULL));
char characters[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789~!@#$%^&*()_-+={[}]|:;<,>.?";
for (int i = 0; i < 15; i++)
for (int i = 0; i < MAX_STRING_SIZE; i++)
{
password[i] = characters[rand() % (sizeof(characters) - 1)];
}
password[15] = '\0';
password[MAX_STRING_SIZE - 1] = '\0';
}
bool save_buffer_to_file(Buffer* buffer)