-
最小错误率Bayes分类器的设计与检验
模式识别的一些matlab程序, 最小错误率Bayes分类器的设计与检验。是模式识别中常用的算法。利用此算法方便简化算法的步骤。减少算法的编程。
- 2022-10-05 08:30:03下载
- 积分:1
-
fgdump源码
fgdump,一个提取windows系统用户密码hash值的工具,现在已经开源了,在此提供源代码。工具支持xp/2003/2008/7系统,2012没有测试。
- 2022-03-30 12:37: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
-
操作系统经典算法进程同步之读者写者问题,编译器LCC2005版
操作系统经典算法进程同步之读者写者问题,编译器LCC2005版-classic operating system process synchronization algorithm Readers write problem, the compiler version LCC2005
- 2022-06-21 05:07:20下载
- 积分:1
-
Web ComboBox control
Web上ComboBox控件-Web ComboBox control
- 2022-02-07 21:05:54下载
- 积分:1
-
ST7MC芯片控制的BLDC无刷驱动
采用ST7MC为主控的一个无刷电机驱动软件,C语言,采用速度环控制,六部换向采用了特殊的处理,可以预防霍尔的抖动和错误的霍尔信号。内部各个控制模块文件独立,更好的学习无刷电机的运行原理。
- 2022-05-26 12:34:29下载
- 积分:1
-
protues
这是一个带protues的直流电机驱动实验,希望对大家的学习有帮助!!!!!!!!!!!!!!!!!!!!!!!!!
- 2022-01-22 07:53:06下载
- 积分:1
-
我花了晚上的时间准备程序,我们会很有意义的哦
本人花了N个晚上编写的程序,大家可要好好侃侃哦-I spent the evening preparing N procedures, we would be the implications oh well
- 2022-05-18 00:43:42下载
- 积分:1
-
五子棋控制台实现(vc6.0)
在控制台纯c语言实现五子棋的实现
- 2022-05-18 20:18:50下载
- 积分:1
-
DLL to C
能够把DLL转换为可编译的C/C++源代码的工具
- 2022-01-31 21:52:34下载
- 积分:1