Jump to content

FMGo Field Encryption


This topic is 4264 days old. Please don't post here. Open a new topic instead.

Recommended Posts

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.

  • Like 1
Link to comment
Share on other sites

  • 5 weeks later...
  • 3 months later...

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 :)

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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!

Link to comment
Share on other sites

This topic is 4264 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.