コード例 #1
0
ファイル: NativeEncryption.cs プロジェクト: byterj/phoenix
 public static extern void BlowfishDecrypt(ref BlowfishObj Obj, byte[] input, [In, Out] byte[] output, int len);
コード例 #2
0
ファイル: NativeEncryption.cs プロジェクト: byterj/phoenix
 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);
 }