encryptAsymmetric method

List<int> encryptAsymmetric(
  1. List<int> data
)

Encrypts data using the asymmetric cipher (for key exchange, signatures, etc.)

Implementation

List<int> encryptAsymmetric(List<int> data) {
  return asymmetricHandler.encrypt(data);
}