xcAesDecryptToHexString method

Future<String> xcAesDecryptToHexString(
  1. String str,
  2. String key, {
  3. bool bSecureRandomKey = false,
})

网络接口 解密 body str 需要解密内容 key 通过xcServerKeyFilter获得的key

Implementation

Future<String> xcAesDecryptToHexString(String str, String key,
    {bool bSecureRandomKey = false}) {
  return _api.xcAesDecryptToHexString(str, key, bSecureRandomKey);
}