I'm working with elliptic curve cryptography and have a generator point $G$ on the secp256k1 curve. For example, I can express a point as $5G$ (the result of multiplying the generator point by 5).
Can the point $5G$ from secp256k1 be converted to an equivalent point on secp384r1? If so, how can I achieve this?
Is there a direct method to translate a point from secp256k1 to an equivalent point on secp384r1?
I appreciate any guidance on how to manage the conversion of elliptic curve points while maintaining the integrity of my cryptographic operations.