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