public static byte[] Decrypt(byte[] Data, byte[] seedKey)
 {
     return(SEEDEncryption.Decrypt(Data, seedKey, true));
 }
 public static string Decrypt(String s, String Key)
 {
     byte[] sData   = Convert.FromBase64String(s);
     byte[] seedKey = Encoding.Default.GetBytes(Key);
     return(Encoding.UTF8.GetString(SEEDEncryption.Decrypt(sData, seedKey)));
 }