c# 实现MD5,SHA1,SHA256,SHA512等常用加密算法

using System;
None.gif
using System.IO;
None.gif
using System.Data;
None.gif
using System.Text;
None.gif
using System.Diagnostics;
None.gif
using System.Security;
None.gif
using System.Security.Cryptography;
None.gif
ExpandedBlockStart.gifContractedBlock.gif
/**//* 
InBlock.gif * .Net框架由于拥有CLR提供的丰富库支持,只需很少的代码即可实现先前使用C等旧式语言很难实现的加密算法。本类实现一些常用机密算法,供参考。其中MD5算法返回Int的ToString字串。返回数字字母型结果的算法参见之前Blog文章
ExpandedBlockEnd.gif 
*/

None.gif
namespace 档案数字化加工
ExpandedBlockStart.gifContractedBlock.gif
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// 类名:HashEncrypt
InBlock.gif    
/// 作用:对传入的字符串进行Hash运算,返回通过Hash算法加密过的字串。
InBlock.gif    
/// 属性:[无]
InBlock.gif    
/// 构造函数额参数:
InBlock.gif    
/// IsReturnNum:是否返回为加密后字符的Byte代码
InBlock.gif    
/// IsCaseSensitive:是否区分大小写。
InBlock.gif    
/// 方法:此类提供MD5,SHA1,SHA256,SHA512等四种算法,加密字串的长度依次增大。
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    public class HashEncrypt
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        
//private string strIN;
InBlock.gif
        private bool isReturnNum;
InBlock.gif        
private bool isCaseSensitive;
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
InBlock.gif        
/// 类初始化,此类提供MD5,SHA1,SHA256,SHA512等四种算法,加密字串的长度依次增大。
InBlock.gif        
/// </summary>
InBlock.gif        
/// <param name="IsCaseSensitive">是否区分大小写</param>
ExpandedSubBlockEnd.gif        
/// <param name="IsReturnNum">是否返回为加密后字符的Byte代码</param>

InBlock.gif        public HashEncrypt(bool IsCaseSensitive, bool IsReturnNum)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
this.isReturnNum = IsReturnNum;
InBlock.gif            
this.isCaseSensitive = IsCaseSensitive;
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
private string getstrIN(string strIN)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
//string strIN = strIN;
InBlock.gif
            if (strIN.Length == 0)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                strIN 
= "~NULL~";
ExpandedSubBlockEnd.gif            }

InBlock.gif            
if (isCaseSensitive == false)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                strIN 
= strIN.ToUpper();
ExpandedSubBlockEnd.gif            }

InBlock.gif            
return strIN;
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
public string MD5Encrypt(string strIN)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
//string strIN = getstrIN(strIN);
InBlock.gif
            byte[] tmpByte;
InBlock.gif            MD5 md5 
= new MD5CryptoServiceProvider();
InBlock.gif            tmpByte 
= md5.ComputeHash(GetKeyByteArray(getstrIN(strIN)));
InBlock.gif            md5.Clear();
InBlock.gif
InBlock.gif            
return GetStringValue(tmpByte);
InBlock.gif
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
public string SHA1Encrypt(string strIN)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
//string strIN = getstrIN(strIN);
InBlock.gif
            byte[] tmpByte;
InBlock.gif            SHA1 sha1 
= new SHA1CryptoServiceProvider();
InBlock.gif
InBlock.gif            tmpByte 
= sha1.ComputeHash(GetKeyByteArray(strIN));
InBlock.gif            sha1.Clear();
InBlock.gif
InBlock.gif            
return GetStringValue(tmpByte);
InBlock.gif
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
public string SHA256Encrypt(string strIN)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
//string strIN = getstrIN(strIN);
InBlock.gif
            byte[] tmpByte;
InBlock.gif            SHA256 sha256 
= new SHA256Managed();
InBlock.gif
InBlock.gif            tmpByte 
= sha256.ComputeHash(GetKeyByteArray(strIN));
InBlock.gif            sha256.Clear();
InBlock.gif
InBlock.gif            
return GetStringValue(tmpByte);
InBlock.gif
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
public string SHA512Encrypt(string strIN)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
//string strIN = getstrIN(strIN);
InBlock.gif
            byte[] tmpByte;
InBlock.gif            SHA512 sha512 
= new SHA512Managed();
InBlock.gif
InBlock.gif            tmpByte 
= sha512.ComputeHash(GetKeyByteArray(strIN));
InBlock.gif            sha512.Clear();
InBlock.gif
InBlock.gif            
return GetStringValue(tmpByte);
InBlock.gif
ExpandedSubBlockEnd.gif        }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
InBlock.gif        
/// 使用DES加密(Added by niehl 2005-4-6)
InBlock.gif        
/// </summary>
InBlock.gif        
/// <param name="originalValue">待加密的字符串</param>
InBlock.gif        
/// <param name="key">密钥(最大长度8)</param>
InBlock.gif        
/// <param name="IV">初始化向量(最大长度8)</param>
ExpandedSubBlockEnd.gif        
/// <returns>加密后的字符串</returns>

InBlock.gif        public string DESEncrypt(string originalValue, string key, string IV)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
//将key和IV处理成8个字符
InBlock.gif
            key += "12345678";
InBlock.gif            IV 
+= "12345678";
InBlock.gif            key 
= key.Substring(08);
InBlock.gif            IV 
= IV.Substring(08);
InBlock.gif
InBlock.gif            SymmetricAlgorithm sa;
InBlock.gif            ICryptoTransform ct;
InBlock.gif            MemoryStream ms;
InBlock.gif            CryptoStream cs;
InBlock.gif            
byte[] byt;
InBlock.gif
InBlock.gif            sa 
= new DESCryptoServiceProvider();
InBlock.gif            sa.Key 
= Encoding.UTF8.GetBytes(key);
InBlock.gif            sa.IV 
= Encoding.UTF8.GetBytes(IV);
InBlock.gif            ct 
= sa.CreateEncryptor();
InBlock.gif
InBlock.gif            byt 
= Encoding.UTF8.GetBytes(originalValue);
InBlock.gif
InBlock.gif            ms 
= new MemoryStream();
InBlock.gif            cs 
= new CryptoStream(ms, ct, CryptoStreamMode.Write);
InBlock.gif            cs.Write(byt, 
0, byt.Length);
InBlock.gif            cs.FlushFinalBlock();
InBlock.gif
InBlock.gif            cs.Close();
InBlock.gif
InBlock.gif            
return Convert.ToBase64String(ms.ToArray());
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
public string DESEncrypt(string originalValue, string key)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
return DESEncrypt(originalValue, key, key);
ExpandedSubBlockEnd.gif        }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
InBlock.gif        
/// 使用DES解密(Added by niehl 2005-4-6)
InBlock.gif        
/// </summary>
InBlock.gif        
/// <param name="encryptedValue">待解密的字符串</param>
InBlock.gif        
/// <param name="key">密钥(最大长度8)</param>
InBlock.gif        
/// <param name="IV">m初始化向量(最大长度8)</param>
ExpandedSubBlockEnd.gif        
/// <returns>解密后的字符串</returns>

InBlock.gif        public string DESDecrypt(string encryptedValue, string key, string IV)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
//将key和IV处理成8个字符
InBlock.gif
            key += "12345678";
InBlock.gif            IV 
+= "12345678";
InBlock.gif            key 
= key.Substring(08);
InBlock.gif            IV 
= IV.Substring(08);
InBlock.gif
InBlock.gif            SymmetricAlgorithm sa;
InBlock.gif            ICryptoTransform ct;
InBlock.gif            MemoryStream ms;
InBlock.gif            CryptoStream cs;
InBlock.gif            
byte[] byt;
InBlock.gif
InBlock.gif            sa 
= new DESCryptoServiceProvider();
InBlock.gif            sa.Key 
= Encoding.UTF8.GetBytes(key);
InBlock.gif            sa.IV 
= Encoding.UTF8.GetBytes(IV);
InBlock.gif            ct 
= sa.CreateDecryptor();
InBlock.gif
InBlock.gif            byt 
= Convert.FromBase64String(encryptedValue);
InBlock.gif
InBlock.gif            ms 
= new MemoryStream();
InBlock.gif            cs 
= new CryptoStream(ms, ct, CryptoStreamMode.Write);
InBlock.gif            cs.Write(byt, 
0, byt.Length);
InBlock.gif            cs.FlushFinalBlock();
InBlock.gif
InBlock.gif            cs.Close();
InBlock.gif
InBlock.gif            
return Encoding.UTF8.GetString(ms.ToArray());
InBlock.gif
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
public string DESDecrypt(string encryptedValue, string key)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
return DESDecrypt(encryptedValue, key, key);
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
private string GetStringValue(byte[] Byte)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
string tmpString = "";
InBlock.gif            
if (this.isReturnNum == false)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                ASCIIEncoding Asc 
= new ASCIIEncoding();
InBlock.gif                tmpString 
= Asc.GetString(Byte);
ExpandedSubBlockEnd.gif            }

InBlock.gif            
else
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
int iCounter;
InBlock.gif                
for (iCounter = 0; iCounter < Byte.Length; iCounter++)
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    tmpString 
= tmpString + Byte[iCounter].ToString();
ExpandedSubBlockEnd.gif                }

ExpandedSubBlockEnd.gif            }

InBlock.gif            
return tmpString;
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
private byte[] GetKeyByteArray(string strKey)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif
InBlock.gif            ASCIIEncoding Asc 
= new ASCIIEncoding();
InBlock.gif
InBlock.gif            
int tmpStrLen = strKey.Length;
InBlock.gif            
byte[] tmpByte = new byte[tmpStrLen - 1];
InBlock.gif
InBlock.gif            tmpByte 
= Asc.GetBytes(strKey);
InBlock.gif
InBlock.gif            
return tmpByte;
InBlock.gif
ExpandedSubBlockEnd.gif        }

InBlock.gif
ExpandedSubBlockEnd.gif    }

ExpandedBlockEnd.gif}

转载于:https://www.cnblogs.com/hzuIT/articles/758974.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/300149.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C# WPF MVVM项目实战(进阶①)

这篇文章还是在之前用Caliburn.Micro搭建好的框架上继续做的开发&#xff0c;今天主要是增加了一个用户窗体TestFormView&#xff0c;然后通过TabControl&#xff0c;将新增的窗体加载到主界面上进行分页显示&#xff0c;新增的页面引用了WPF UI&#xff1a;WPF Datagrid合并表…

双十一变身大型奥数竞赛现场?数学不好的你请转场

当微信又被淘宝“助力”刷屏&#xff0c;我们开始意识到它来了&#xff0c;它真的来了它今天真的来了&#xff01;令人闻风丧胆的双十一又双叒叕要到了&#xff01;从最开始的光棍节变成现在的购物节每年双十一的优惠难度堪比南孚电池一节更比一节强小木&#xff1a;阿里&#…

css两栏式布局示例

请先看图,这里主要用到了float属性,该属性的值指出了对象是否及如何浮动 语法&#xff1a; float : none | left |right 参数&#xff1a; none :  对象不浮动;left :  对象浮在左边;right :  对象浮在右边 请看代码,请CSS高手指教,其他还可以用position来实现两栏,只…

HttpClient 禁用自动重定向

HttpClient 禁用自动重定向Intro前段时间写了一个小工具来帮助我们简化一个每个月一次的小任务&#xff0c;每个月我们公司的 BI Team 会给我们上个月访问量比较高的博客文章的 url&#xff0c;然后我们会根据 BI 提供博客的 url 去找到对应的博客 id&#xff0c;然后更新到配置…

OpenAI“单手解魔方”被公开质疑,Gary Marcus称七大问题涉嫌误导

全世界只有3.14 % 的人关注了青少年数学之旅近日&#xff0c;“OpenAI的机器手在4分钟内单手成功还原魔方”引起刷屏&#xff0c;然而&#xff0c;这一成就被著名机器学习怀疑论者马库斯质疑了&#xff0c;马库斯逐条列举OpenAI的误导性说法&#xff0c;机器学习圈却都撑OpenAI…

记一次 .NET 某云采购平台API 挂死分析

一&#xff1a;背景 1. 讲故事大概有两个月没写博客了&#xff0c;关注我的朋友应该知道我最近都把精力花在了星球&#xff0c;这两个月时间也陆陆续续的有朋友求助如何分析dump&#xff0c;有些朋友太客气了&#xff0c;给了大大的红包&#xff0c;哈哈????&#xff0c;手…

来自女朋友的灵魂拷问!| 今日最佳

全世界只有3.14 % 的人关注了青少年数学之旅【1】【2】【3】【4】【5】【6】【7】【8】【9】

利用 PGO 提升 .NET 程序性能

引子.NET 6 开始初步引入 PGO。PGO 即 Profile Guided Optimization&#xff0c;通过收集运行时信息来指导 JIT 如何优化代码&#xff0c;相比以前没有 PGO 时可以做更多以前难以完成的优化。下面我们用 .NET 6 的 nightly build 版本 6.0.100-rc.1.21377.6 来试试新的 PGO。PG…

不作死就不会死,盘点那些死于自己发明的发明家

全世界只有3.14 %的人关注了青少年数学之旅还有他们死于自己的发明发明呼吸器&#xff1a;缺氧死亡 1772年&#xff0c;法国人希厄尔弗莱米奈特发明了可用于潜水的循环式再呼吸器&#xff0c;让呼出的气体实现循环。这是世界上第一个自持呼吸装置。不幸的是&#xff0c;弗莱米奈…

如何在Domino中使用文本文件注册用户

具体的步骤如下&#xff1a; 1。先用以下的格式创建一个文本文件&#xff08;每个用户一行&#xff09;: ZhangSan;;;;passw0rd;e:\id\603server;zhangsan.id;603server/r6domain;;zhangsan.nsf;;;;;;;;;;;; LiSi;;;;passw0rd;e:\id\603server;lisi.id;603server/r6domain;;lis…

盘点那些世间顶级直男hhhhhh | 今日最佳

全世界只有3.14 % 的人关注了青少年数学之旅【1】【2】【3】【4】【5】【6】【7】【8】【9】

android的单选按钮xml语法,android 控件 单项选择(RadioGroup,RadioButton)

1、继承关系和子类&#xff1a;2、定义&#xff1a;RadioButton表示单个圆形单选框&#xff0c;而RadioGroup是可以容纳多个RadioButton的容器3、XML重要属性&#xff1a;4、重要方法&#xff1a;5、实战&#xff1a;布局文件android:layout_width"wrap_content"andr…

[006] 了解 Roslyn 编译器

维基百科对编译器的解释是&#xff1a;编译器是一种程序&#xff0c;它将某种编程语言编写的源代码(原始语言)转换成另一种编程语言(目标语言)。编译是从源代码(通常为高阶语言)到能直接被计算机或虚拟机执行的目标代码(通常为低阶语言或机器语言)的翻译过程。在 .NET 平台中&a…

这个让人看跪了的设计!实力证明,数学才是世界的最终boss!

全世界只有3.14 %的人关注了青少年数学之旅最近&#xff0c;有不少购买了年度数学艺术礼盒《数学之旅闪耀人类的54个数学家》的小伙伴&#xff0c;已经按捺不住内心的激动&#xff1a;但超模君秉承着“慢工出细活”的态度&#xff0c;多次亲自到工厂对扑克牌的细节进行把关&…

[007] 详解 .NET 程序集

上一篇我们介绍了 Roslyn 编译器&#xff0c;我们知道&#xff0c;我们编写的 C#/VB 代码经过 Roslyn 编译器编译后会生成程序集文件。按照之前讲的 .NET 执行模型的顺序&#xff0c;这一篇我具体讲讲程序集。1什么是程序集我们编写的 C# 代码经过编译会生成 .dll 或 .exe 文件…

21岁就破解困扰人们300年难题的天才,却一生坎坷,怀才不遇,至死还得不到认可...

这不是难题本来就是无解何谓数学&#xff1f;数学家Eduardo曾这样回答“数学是永恒&#xff0c;是真理&#xff0c;是一切的答案。”回首往昔数学始终伴随我们左右纵横交错的几何、繁琐复杂的运算难以求解的方程、无从下手的猜想......尽管在数学道路上有多么的坎坷、崎岖、变化…

android 百度地图 在线建议查询,百度地图SDK-----百度地图在线建议查询,结合AutoCompleteTextView实现搜索下拉列表。...

实现效果图 如下这是百度地图 POISearch的效果&#xff0c;这是自己写的效果首先实现这个功能主要用到了两个部分第一个部分 AutoCompleteTextView具体使用参考 http://blog.csdn.net/iamkila/article/details/7230160第二个部分 百度地图的在线搜索建议功能。http://developer…

共享内存 Actor并发模型到底哪个快?

HI&#xff0c;前几天被.NET圈纪检委懒得勤快问到共享内存和Actor并发模型哪个速度更快。前文传送门&#xff1a;《三分钟掌握共享内存 & Actor并发模型》说实在&#xff0c;我内心10w头羊驼跑过.....先说结论1.首先两者对于并发的风格模型不一样。共享内存利用多核CPU的优…

web service

一、Web Service简介 1.1、Web Service基本概念 Web Service也叫XML Web Service WebService是一种可以接收从Internet或者Intranet上的其它系统中传递过来的请求&#xff0c;轻量级的独立的通讯技术。是:通过SOAP在Web上提供的软件服务&#xff0c;使用WSDL文件进行说明&#…

来自爸妈的敷衍问候!| 今日最佳

全世界只有3.14 % 的人关注了青少年数学之旅