objective c - iPhone custom urls and encryption -


Quick question: Does the custom URL pass between the encrypted apps in iOS? I can not find any documents anywhere, who can tell me yes or no thanks!

I'm not sure, but there is no reason why you could not encrypt the URL yourself What is sent to the app, it does not need a valid URL.

For example.

  myappuri: //myreallysecret.sub.domain.com/mysecretfile.php? Spy = 1  

can be just as easily

  myappuri: // kalsjdfoi2u34lnvqpw3oih / aknasldkjfo289071234ljlinmqoiweu490802  

The second string is still sent to your app and you can decrypt it yourself.

Not sure if this answers your question, but it can be useful.


Comments