rsaEncrypt method

String rsaEncrypt({
  1. required String publicKey,
})

rsa加密

Implementation

String rsaEncrypt({required String publicKey}) =>
    CryptUtil.rsaEncrypt(this, publicKey);