decryptAsymmetric method

List<int> decryptAsymmetric(
  1. List<int> encryptedData
)

Decrypts data using the asymmetric cipher

Implementation

List<int> decryptAsymmetric(List<int> encryptedData) {
  return asymmetricHandler.decrypt(encryptedData);
}