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