May 3, 201213 yr Hi, While it is not possible to use plugins with FMGO, is there another way to encrypt data except custom functions? Custom function are great but are weak and slow when it comes to encryption/decryption (not hashing). tnx E.
September 14, 201213 yr Author Hi, I found a very nice solution that works for the iPad. I'm actually using something like "https://webaddress.com/encrypt?key=x&data=y" in "insert from url". it works perfectly! you can use it for large data sets also and the result is fast. all you have to do after that is parse the result... I hope it is useful to someone :)
September 14, 201213 yr Also check out also DataVault Maker by Nightwing http://www.nightwing.com.au/FileMaker/products.html
September 14, 201213 yr Author DataVault looks great but I need to use industry standard and advanced hashing functions on the iPad and its free
September 14, 201213 yr Xtrim, are you hosting the URL-based encryption yourself, or using a service? Others searching the forums in the future for the same problem your having might benefit from a link to the service you found.
September 15, 201213 yr Author Hi: I do it myself - but it is so easy: <?php echo hash('sha256', $_GET["txt"]); ?> This is all you need for hashing for example. I call this file hash.php and the I call it with https... so all the process is completely secured!
Create an account or sign in to comment