xcAesEncryptToHexString method

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

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

Implementation

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