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