I'm in the middle of a school project, where I have to demonstrate RSA.
I'm serializing objects using the fairly basic ObjectOutputStream and returning it as a byte array.
The RSA method I'm using is very similar to the one found here.
The problem arises in the conversion between the byte array from the serialization and the BigIntegers in the RSA encryption.
Looking at the bytes reveals the fact that there are several negative values in the byte array, explaining the problematic conversion.
How do I work around this?
Thanks in advance!