This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"syscall" | |
"time" | |
"unsafe" | |
) | |
const ( | |
TickPerMillisecond int64 = 0x2710 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*public static string DecryptStringEx(string source) | |
{ | |
//判断是否为空字符串 | |
if (string.IsNullOrEmpty(source)) | |
{ | |
//直接返回原字符串 | |
return source; | |
} | |
//获得要解密的数据 |