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