Thanks for your great help you offer through this nice form.
My problem is in encryption and decryption using RSA, in my project I need to encrypt some string using the public key and send the results via some socket to another client to decrypt it using the relative private key.
My encryption function return byte[] and I encode it to string to be able to send it also I add some other data to this string and then in the other side I...