public static extern void TwofishEncrypt(ref TwofishObj Obj, byte[] input, [In, Out] byte[] output, int len);
public static extern void TwofishInit(ref TwofishObj Obj);
public TwofishEncryption(uint seed) { obj = TwofishObj.Create; obj.IP = seed; NativeEncryption.TwofishInit(ref obj); }