摘要:
1 ///2 /// 注册表基项静态域3 /// 4 /// 主要包括:5 /// 1.Registry.ClassesRoot 对应于HKEY_CLASSES_ROOT主键6 /// 2.Registry.CurrentUser 对应于HKEY_CURRENT_USER主键7 /// ... 阅读全文
摘要:
从网上找到了一些相关的资料然后自己试着做了一下觉得收益匪浅。其实对MD5的加密解密,我们知道怎么调用就好了,其实也没有什么太多的必要去看其算法。以下代码希望对观望的读者有用。MD5加密解密的两个类:其中的一个加密解密类:using System;using System.Collections.Generic;using System.Text;using System.Globalization;using System.Security.Cryptography;using System.IO;namespace WindowsApplication2{ class DES { // 创建 阅读全文