Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

2 Answers

up vote 1 down vote accepted

As mentioned in the question and tangens' answer, I couldnt perform the encryption on the regular serialized object. However using the XMLEncoder class I could create an XML-serialization without odd non ascii-convertible numbers.

The next problem was that I couldn't encrypt anything longer than the modulo part (or n) of the RSA crypto-system without breaking the clear text up into fitting parts.

I hope this will eventually help someone else.

share|improve this answer

You should use http://download.oracle.com/javase/6/docs/api/java/math/BigInteger.html#toByteArray() instead of serializing the BigInteger. Serialization will give you a format only suitable for deserialization, but not for further calculations.

share|improve this answer
Thanks for replying! Sorry I weren't making myself completely clear, but I'm not serializing the BigInteger. Given the last part of your answer though, what i'm trying to do doesnt make sense. You gave me an idea i'll try working in tomorrow - thanks again! :D – Joabob Bronco Nov 14 '11 at 23:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.