public static byte[] DecryptString(string strSource, bool header = true) { byte[] bytes = Encoding.UTF8.GetBytes(strSource); return(AESSecurity.DecryptBytes(bytes, header)); }
public static byte[] DecryptBytes(byte[] datas) { return(AESSecurity.DecryptBytes(datas, true)); }