Hey Guys,
I am creating an iphone app in which I have to POST some data to my PHP server. For example I do a HTTP request like this:
http:example.com/append.php?data1=X&data2=Y&token=Z
X and Y are my known data and I want to calculate Z with some algorithm that takes X and Y are inputs and produce Z.
So when I receive X,Y,Z in the server I can run the opposite of the same algorithm there to verify the originality of X and Y.
I don't know what to use to form the Z. Can someone help me please ?
Thanks