Hello team,
I was going through data encryption requirements documentation and learned that we are supposed to use curve25519. As per java sample code, the serialized public key is returned in the format of 0x04(X,Y - encoded in 64 bytes).
I could not find any library that lets me do the same from python. All the exposed interfaces are either expecting 32 bytes key(Y coordinate of the ECPoint) or returning 32 bytes key on serialization.
Please help me here if you have already solved this problem of portability across java and python.