I have some encrypted binary data I want to decrypt. I know nothing about it, but I can get it encrypted with as many different (random, unknown) symmetric keys as I want. The keys are long enough to not get repeated. Something like this:
$A_1 = Data ⊕ Key_1\\ A_2 = Data ⊕ Key_2\\ A_3 = Data ⊕ Key_3\\ …\\ A_n = Data ⊕ Key_n$
Is it possible to get $Data$ just having the $A$s?
Thanks
The keys are long enough to not get repeated.That’s called a [tag:One-Time-Pad]. It may be interesting for you to check related Q&As and to learn about OTP security properties. – e-sushi May 17 '14 at 13:31