Alexander Stolte Expert Licensed User Longtime User Oct 12, 2020 #1 Can I send the password in clear text to my API with SSL? Is that secure enough? If not, is SHA-512 the right encryption for it? Greetings
Can I send the password in clear text to my API with SSL? Is that secure enough? If not, is SHA-512 the right encryption for it? Greetings
Erel B4X founder Staff member Licensed User Longtime User Oct 13, 2020 #2 Alexander Stolte said: Can I send the password in clear text to my API with SSL? Is that secure enough? Click to expand... 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
Alexander Stolte said: Can I send the password in clear text to my API with SSL? Is that secure enough? Click to expand... 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.