Hello :)
I have a 128 byte (1024 bit) modulus (in a byte array format) and my exponent (also in a byte array format). I need to create a 128 bytes byte array representing the public key.
According to Wikipedia, "The public key consists of the modulus n and the public (or encryption) exponent e." But that doesn't tell me how to mix both.
What is the right operation to do?
-n^e (will that stay 128 bytes long?)
-just n?
-n followed by e?
-n added to e?
-something else?
Thank you :)