public static byte[] Decrypt(byte[] Data, byte[] seedKey) { return(SEED.Decrypt(Data, seedKey, true)); }
public static byte[] Encrypt(byte[] Data, byte[] seedKey) { return(SEED.Encrypt(Data, seedKey, false)); }