FarmKey.cs
上传用户:xhd1221
上传日期:2022-05-28
资源大小:186k
文件大小:1k
源码类别:

外挂编程

开发平台:

C/C++

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace QQWinFarm
  5. {
  6.     public class FarmKey
  7.     {
  8.         public static double NetworkDelay = 0;
  9.         #region 获得FarmTime
  10.         /// <summary> 
  11.         /// 获得FarmTime 
  12.         /// </summary> 
  13.         /// <returns></returns> 
  14.         public static string GetFarmTime()
  15.         {
  16.             return Math.Floor((DateTime.Now - new DateTime(1970, 1, 1, 8, 0, 0)).TotalSeconds - NetworkDelay).ToString();
  17.         }
  18.         #endregion
  19.         #region 获得FarmKey
  20.         /// <summary> 
  21.         /// 获得FarmKey 
  22.         /// </summary> 
  23.         /// <param name="farmTime">farmTime</param> 
  24.         /// <returns></returns> 
  25.         public static string GetFarmKey(string farmTime)
  26.         {
  27.             return Utils.getMd5Hash2(farmTime + "sdoit78sdopig7w34057".Substring(Convert.ToInt32(farmTime) % 10));
  28.         }
  29.         #endregion
  30.     }
  31. }