For over a decade I have been using RSA public key for encrypting aes-256-cbc key and iv, before transmission. On the receiving side, the AES key and iv are decrypted using RSA private key.
Now I am about to migrate from openssl 1.1.1 to 3.2.0 version, and I want to use newer encryption methods. Two major changes I am contemplating:
- Switch from aes-256-cbc to aes-256-gcm for authenticated encryption.
- Move away from RSA, towards faster algorithm like X25519.
Unlike RSA public key, X25519 public key cannot be directly used for encrypting the AES key. So I created the shared secret using the X25519 key exchange, as described here. I am not sure what to do next. I am not able to find any openssl c/c++ example of how to encrypt using the shared secret. Every encrypt example I can find uses RSA key. What is the RSA_public_encrypt() equivalent for encrypting using this shared secret? Can EVP_PKEY_encrypt() be used for this?
Ok, I got it working after seeing an example in the openssl site.
The following code has very little error checking, just to keep it short. The variable skey is the shared secret already computed on each side.
On the side of Bob, I encrypted as followed:
On the side of Alice, I decrypted as follows:
I was able to print the decrypted message on the receiving side. I could make it work for the aes_256_gcm too.
Based on the feedback from @Topaco, I derived a new key from the shared secret. Then I used this new key to encrypt and decrypt, worked fine. The code for that is follows: