if (false == StringUtils.equals(encode.getCrc(), destCrc)) {
throw new ChecksumException(String.format("orig: %s, parsed: %s not match", encode.getCrc(), destCrc));
}
// 调用加密工具类
AESUtils aes = new AESUtils();
aes.setSecretKeyString(encode.getKey());
// 解密并解压数据
return COMPRESSOR.decompress(aes.decrypt(encode.getData()));
}