Nokia Active Member Licensed User Longtime User Aug 8, 2016 #1 any body have a good way to write an encrypted string to a config filer? I use a config file to my app options and just need to write one encrypted line to the config file. I do use the B4XEncrytion library. any good examples? thanks..
any body have a good way to write an encrypted string to a config filer? I use a config file to my app options and just need to write one encrypted line to the config file. I do use the B4XEncrytion library. any good examples? thanks..
Erel B4X founder Staff member Licensed User Longtime User Aug 8, 2016 #2 What is this config file? Is it a text file? You can use KeyValueStore2. It is very simple to use and it is based on B4XEnctyprion. https://www.b4x.com/android/forum/t...imple-powerful-local-datastore.63633/#content Upvote 0
What is this config file? Is it a text file? You can use KeyValueStore2. It is very simple to use and it is based on B4XEnctyprion. https://www.b4x.com/android/forum/t...imple-powerful-local-datastore.63633/#content
Nokia Active Member Licensed User Longtime User Aug 8, 2016 #3 Erel said: What is this config file? Is it a text file? You can use KeyValueStore2. It is very simple to use and it is based on B4XEnctyprion. https://www.b4x.com/android/forum/t...imple-powerful-local-datastore.63633/#content Click to expand... yes, it's a text file.. thanks I will look at that.. Upvote 0
Erel said: What is this config file? Is it a text file? You can use KeyValueStore2. It is very simple to use and it is based on B4XEnctyprion. https://www.b4x.com/android/forum/t...imple-powerful-local-datastore.63633/#content Click to expand... yes, it's a text file.. thanks I will look at that..
Erel B4X founder Staff member Licensed User Longtime User Aug 9, 2016 #4 If you want to use a text file then you need to first encrypt it with B4XCipher and then encode it to base64 string with StringUtils. Upvote 0
If you want to use a text file then you need to first encrypt it with B4XCipher and then encode it to base64 string with StringUtils.
Nokia Active Member Licensed User Longtime User Aug 10, 2016 #5 Erel said: If you want to use a text file then you need to first encrypt it with B4XCipher and then encode it to base64 string with StringUtils. Click to expand... that did the trick.. Upvote 0
Erel said: If you want to use a text file then you need to first encrypt it with B4XCipher and then encode it to base64 string with StringUtils. Click to expand... that did the trick..