You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 1.4 when the user enters a master password thru pgagroal-admin, in the case the password is incorrect (i.e., wrong size) the program keeps asking the user for a password without producing any error message that can help the user to understand what she is doing wrong.
…sages.
Closeagroal#206.
See <agroal#200 (comment)>.
The is_valid_password() was checking only the password length and the fact
that was made by ASCII chars.
The check for the length can be done "inline" directly within a loop.
Added a constant with the minimal length of the password, so that it is possible
to insert a warning message for the user in the case she inputs a too short password.
The system also prompts the user for a password with a message that explicitly tells
her the password will not appear on the terminal.
See also the initial work on agroal#200.
Close#206.
See <#200 (comment)>.
The is_valid_password() was checking only the password length and the fact
that was made by ASCII chars.
The check for the length can be done "inline" directly within a loop.
Added a constant with the minimal length of the password, so that it is possible
to insert a warning message for the user in the case she inputs a too short password.
The system also prompts the user for a password with a message that explicitly tells
her the password will not appear on the terminal.
See also the initial work on #200.
In
1.4
when the user enters a master password thrupgagroal-admin
, in the case the password is incorrect (i.e., wrong size) the program keeps asking the user for a password without producing any error message that can help the user to understand what she is doing wrong.Related to #200
The text was updated successfully, but these errors were encountered: