Program.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Runtime.InteropServices;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows.Forms;
  8. namespace cstest
  9. {
  10. static class Program
  11. {
  12. /// <summary>
  13. /// 应用程序的主入口点。
  14. /// </summary>
  15. [STAThread]
  16. static void Main()
  17. {
  18. string md5 = "AT中国123";
  19. byte[] sss = Encoding.UTF8.GetBytes(md5);
  20. string ss2 = System.Text.Encoding.GetEncoding("gb2312").GetString(sss);
  21. byte[] result = new byte[32];
  22. // result = Encoding.UTF8.GetBytes(md5);
  23. IntPtr intptr = Marshal.AllocHGlobal(32);
  24. int len = 32;
  25. if ( 0 == GetStringMD5(ss2, intptr, len) )
  26. //if (0 == GetFileMD5(@"D:\0.dat", intptr, len))
  27. {
  28. System.Runtime.InteropServices.Marshal.Copy(intptr, result, 0, 32);
  29. string md52 = Encoding.Default.GetString(result);
  30. }
  31. Application.EnableVisualStyles();
  32. Application.SetCompatibleTextRenderingDefault(false);
  33. Application.Run(new Form1());
  34. }
  35. #region
  36. [DllImport("lyfzMD5.dll", EntryPoint = "GetStringMD5")]
  37. public static extern int GetStringMD5(string input, IntPtr result, int len);
  38. [DllImport("lyfzMD5.dll", EntryPoint = "GetFileMD5")]
  39. public static extern int GetFileMD5(string filepath, IntPtr result, int len);
  40. #endregion
  41. }
  42. }