Esempio n. 1
0
 public static extern void BlowfishDecrypt(ref BlowfishObj Obj, byte[] input, [In, Out] byte[] output, int len);
Esempio n. 2
0
 public static extern void BlowfishInit(ref BlowfishObj Obj);
Esempio n. 3
0
 public static extern void BlowfishInit(ref BlowfishObj Obj);
Esempio n. 4
0
 public static extern void BlowfishEncrypt(ref BlowfishObj Obj, byte[] input, [In, Out] byte[] output, int len);
Esempio n. 5
0
 public BlowfishEncryption()
 {
     obj = BlowfishObj.Create;
     NativeEncryption.BlowfishInit(ref obj);
 }
Esempio n. 6
0
 public BlowfishEncryption()
 {
     obj = BlowfishObj.Create;
     NativeEncryption.BlowfishInit(ref obj);
 }