Tell me, will the following scheme of registration be correct:
- The data entered by the user (the password is not encrypted, is transmitted as is) are sent via HTTPS to the server
- on arrival at the server, the data is stored in the database (the password is previously hashed before being entered into the database)
And the scheme of work at the entrance to the account :
also unencrypted data is transmitted via HTTPS
on arrival at the server they are checked for validity with those who are in the database
if they are not valid, the user is sent a signal that
data entered incorrectly- if they are valid, then here I have a second question: what to do next?
PS The client is the Android application PPS. Do not forget the first question: "Will this scheme be correct?"