-
AD0809
AD0809的功能启动,描述了如何启动AD0809的数模转换功能,并且在旁边加油注释(The AD0809 s function is activated, and describes how to start the AD0809 digital to analog conversion function, and next to the fuel comment)
- 2012-04-29 15:12:40下载
- 积分:1
-
微信群发Web请求C#源码
微信群发Web请求C#源码
- 2020-12-12下载
- 积分:1
-
SIO_GET_BROADCAST_ADDRESS
Get Broacdcast address in C
- 2007-08-02 10:00:14下载
- 积分:1
-
Reverse-CR24
说明: 大佬做的C语言复现,并不能当作Wanna cry病毒的C语言版本使用(C Language Reproduction by others)
- 2019-04-21 15:24:37下载
- 积分:1
-
31856matlabvc
主要是MATLAB与VC的链接,是从别人哪里弄过来的,和大家一起分享一下!希望对大家可以有用!~~(MATLAB and VC are the main link where other people get from the back, and to share with everyone! Hope everyone can be useful! ~ ~)
- 2009-02-23 13:13:13下载
- 积分:1
-
hilbertCSharp
C#编写的离散傅立叶变换程序及希尔伯特变换程序,希尔伯特变换对于信号变换有重要意义。该程序通过验证,效果理想。(prepared by the discrete Fourier transform procedures and Hilbert transform procedures, Hilbert transform for signal conversion, it is of great significance. The procedure validated, the results have been satisfactory.)
- 2021-04-11 09:58:58下载
- 积分:1
-
mcgs-eg
关于MCGS锅炉控制的实验事例,供大家参考(the example about MCGS)
- 2015-03-11 09:45:14下载
- 积分:1
-
PhoneGap
PhoneGap.zip,方便快捷开发Android,IOS客户端的开发(PhoneGap.zip, convenient and efficient development of developing Android, IOS clients)
- 2014-02-19 10:37:55下载
- 积分:1
-
Key
msp430f149按键程序,非常完整,带中断,输入,输出(msp430f149 key procedures)
- 2014-06-13 15:06:31下载
- 积分:1
-
C# 实现 MD5加密解密算法
using System.Security.Cryptography;using System.IO; using System.Text; ///MD5加密 public string MD5Encrypt(string pToEncrypt, string sKey) { DESCryptoServiceProvider des = new DESCryptoServiceProvider(); byte[] inputByteArray = Encoding.Default.GetBytes(pToEncrypt); des.Key = ASCIIEncoding.ASCII.GetBytes(sKey); des.IV = ASCIIEncoding.ASCII.GetBytes(sKey); MemoryStream ms = new MemoryStream(); CryptoStream cs = new CryptoStream(ms, des.CreateEncryptor(),CryptoStreamMode.Write); cs.Write(inputByteArray, 0, inputByteArray.Length); cs.FlushFinalBlock(); StringBuilder ret = new StringBuilder(); foreach(byte b in ms.ToArray()) { ret.AppendFormat("{0:X2}", b); } ret.ToString(); return ret.ToString(); } ///MD5解密 public string MD5Decrypt(string pToDecrypt, string sKey) { DESCryptoServiceProvider des = new DESCryptoServiceProvider(); byte[] inputByteArray = new byte[pToDecrypt.Length / 2]; for(int x = 0; x < pToDecrypt.Length / 2; x ) { int i = (Convert.ToInt32(pToDecrypt.Substring(x * 2, 2), 16)); inputByteArray[x] = (byte)i; } des.Key = ASCIIEncoding.ASCII.GetBytes(sKey); des.IV = ASCIIEncoding.ASCII.GetBytes(sKey); MemoryStream ms = new MemoryStream(); CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(),CryptoStreamMode.Write); cs.Write(inputByteArray, 0, inputByteArray.Length); cs.FlushFinalBlock(); StringBuilder ret = new StringBuilder(); return System.Text.Encoding.Default.GetString(ms.ToArray()); }
- 2013-11-13下载
- 积分:1