encryptV1 function
Implementation
EncryptedPrivateKeyModel encryptV1(
String text,
String encryptionPublicKey,
String version,
) {
String signature = '';
// final result =
// SimplePublicKey(hexToBytes(stringToHex(text)), type: KeyPairType.x25519);
return EncryptedPrivateKeyModel(
version: version,
ciphertext: signature,
nonce: '',
);
}