I have created several accounts in Hedera,
and have their PrivateKey
s and PublicKey
s available in the Hedera SDK.
I am able to use these to create signatures on data,
and verify signatures on data, as the SDK provide methods to do these.
However, I would like to perform public key encryption/ decryption operations on data.
Is there a recommended way to do so?
Note: I am aware that the SDK does not provide these methods.
Thus, I am willing to use crypto
from NodeJs or an npm
dependency,
as long as it is interoperable with PrivateKey
s and PublicKey
s from the Hedera SDK.