public static string ReadFileEncrypt(string path) { try { byte[] bts = ReadAllBytesFromFile(path); bts = AESUtil.aesDecryptBase64(bts, Const.kAesKey); return(Utils.BytesToUTF8(bts)); } catch (System.Exception e) { return(""); } }