Base64解密
static String decodeBase64(String data) { List<int> bytes = base64Decode(data); String result = utf8.decode(bytes); return result; }