decrypt method

String decrypt(
  1. String message
)

Decrypt a message which was encrypted using the associated RSAPublicKey

Implementation

String decrypt(String message) =>
    utf8.decode(decryptData(base64.decode(message)));