Android Question Send password in clear text to my api with SSL secure enough

Erel

B4X founder
Staff member
Licensed User
Longtime User
Can I send the password in clear text to my API with SSL? Is that secure enough?
SSL, with a modern server, is secure enough for most tasks.

Using a hash of the password instead of sending the password itself is always a good practice. You can use B4XEncryption for this. Simple and secure.
 
Upvote 0
Top