xtrim Posted May 3, 2012 Posted May 3, 2012 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. 1
xtrim Posted September 14, 2012 Author Posted September 14, 2012 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 :)
LaRetta Posted September 14, 2012 Posted September 14, 2012 Also check out also DataVault Maker by Nightwing http://www.nightwing.com.au/FileMaker/products.html
xtrim Posted September 14, 2012 Author Posted September 14, 2012 DataVault looks great but I need to use industry standard and advanced hashing functions on the iPad and its free 1
jbante Posted September 14, 2012 Posted September 14, 2012 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.
xtrim Posted September 15, 2012 Author Posted September 15, 2012 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!
Recommended Posts
This topic is 4451 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now