Example #1
0
 public static extern void MD5Encrypt(ref MD5Obj Obj, byte[] input, [In, Out] byte[] output, int len);
Example #2
0
 public static extern void MD5Init(ref MD5Obj Obj, byte[] Data, uint Size);
Example #3
0
 public MD5(byte[] Data)
 {
     obj = MD5Obj.Create;
     NativeEncryption.MD5Init(ref obj, Data, (uint)Data.Length);
 }
Example #4
0
 public MD5(byte[] Data)
 {
     obj = MD5Obj.Create;
     NativeEncryption.MD5Init(ref obj, Data, (uint)Data.Length);
 }
Example #5
0
 public static extern void MD5Init(ref MD5Obj Obj, byte[] Data, uint Size);
Example #6
0
 public static extern void MD5Encrypt(ref MD5Obj Obj, byte[] input, [In, Out] byte[] output, int len);