This question is quite related to this one, but I am looking for more details.
I am writing a very basic implementation to demonstrate how RSA works. My current implementation generates key pairs using 64-bit integers.
I am looking for the proper method to encrypt a string. I guess the bytes are packed together (32-bits) (smaller than the modulus value), then each packet is encrypted.
I would like to know if each packet is encrypted independently or if they are chained together.