Is there any function which will take two inputs, (a+b) as one input and c as another, and return a result from which c can only be computed only if a and/or b are known individually?
Basically I want to modify c with (a+b) in such a way that you have to know a and b individually to get c back.
Thanks in advance!
if i understand you right, that is not possible. if you take a=3, b=5, c=7, it is the same thing as if you take a=4,b=4, c=7
that means, if you are able to get c if you know the real $a_1$ and $b_1$, you can get the same c if you use "wrong" a,b, lets say $a_2,b_2$ such that $a_1+b_1 = a_2 b_2$