Roberto P. Well-Known Member Licensed User Longtime User May 16, 2018 #1 Hi all, a user wants to be sure that the data that the app exchanges with the server is safe. He asks me that the data are encrypted and protected. Can you tell me if B4XSerializator meets the requirements or if I have to use other tools to encrypt or secure communications, such as HTTPS? thank in advance regards
Hi all, a user wants to be sure that the data that the app exchanges with the server is safe. He asks me that the data are encrypted and protected. Can you tell me if B4XSerializator meets the requirements or if I have to use other tools to encrypt or secure communications, such as HTTPS? thank in advance regards
KMatle Expert Licensed User Longtime User May 16, 2018 #2 Https is just a "layer" and is supported by OkHttpUtils. B4xSerializator has nothing to do with encryption. So if you use Https everythng should be fine. If you need further enryption search for it in the forum. Upvote 0
Https is just a "layer" and is supported by OkHttpUtils. B4xSerializator has nothing to do with encryption. So if you use Https everythng should be fine. If you need further enryption search for it in the forum.
Erel B4X founder Staff member Licensed User Longtime User May 17, 2018 #3 KMatle said: B4xSerializator has nothing to do with encryption. Click to expand... Very true. You can first encrypt the data with B4XEncryption, which is cross platform. Though it will be better to use HTTPS. Upvote 0
KMatle said: B4xSerializator has nothing to do with encryption. Click to expand... Very true. You can first encrypt the data with B4XEncryption, which is cross platform. Though it will be better to use HTTPS.