Assume I encrypt byte array A, resulting in encrypted byte array E. I next split E into two smaller arrays, E1 and E2.
If I ONLY have either E1 and E2, can they be decrypted, or do both E1 AND E2 need to be present, in the correct sequence, in order for the data to be successfully decrypted? Can any useful information (i.e. some subset of A) be extracted from either E1 or E2 independently?
I realize this may depend on the encryption algorithm. I am primarily curious about common key pair algorithms such as RSA.