zoukankan
html css js c++ java
哈希算法MD5和SHA1的C#实现
/**/
/*
* 哈希算法MD5和SHA1的C#实现
*
*
* 夏春涛 Email:xChuntao@163.com
* Blog:
http://bluesky521.cnblogs.com
* 运行环境:.net2.0 framework
*/
/**/
/*
* 关于哈希函数:
* 哈希函数将任意长度的二进制字符串映射为固定长度的小型二进制字符串。
* 加密哈希函数有这样一个属性:在计算上不大可能找到散列为相同的值的两个
* 不同的输入;也就是说,两组数据的哈希值仅在对应的数据也匹配时才会匹配。
* 数据的少量更改会在哈希值中产生不可预知的大量更改。
*
* MD5 算法的哈希值大小为 128 位。
* SHA1 算法的哈希值大小为 160 位。
*/
using
System;
using
System.Collections.Generic;
using
System.Text;
using
System.Security.Cryptography;
namespace
MD5_App
{
class
Program
{
static
void
Main(
string
[] args)
{
string
strSrc
=
"
How are you?
"
;
Console.WriteLine(
"
原文:
"
+
strSrc);
Console.WriteLine();
Console.WriteLine(
"
MD5哈希值:
"
+
MD5_Hash(strSrc));
Console.WriteLine();
Console.WriteLine(
"
SHA1哈希值:
"
+
SHA1_Hash(strSrc));
Console.WriteLine();
}
//
MD5
static
public
string
MD5_Hash(
string
str_md5_in)
{
MD5 md5
=
new
MD5CryptoServiceProvider();
byte
[] bytes_md5_in
=
UTF8Encoding.Default.GetBytes(str_md5_in);
byte
[] bytes_md5_out
=
md5.ComputeHash(bytes_md5_in);
string
str_md5_out
=
BitConverter.ToString(bytes_md5_out);
//
str_md5_out = str_md5_out.Replace("-", "");
return
str_md5_out;
}
//
SHA1
static
public
string
SHA1_Hash(
string
str_sha1_in)
{
SHA1 sha1
=
new
SHA1CryptoServiceProvider();
byte
[] bytes_sha1_in
=
UTF8Encoding.Default.GetBytes(str_sha1_in);
byte
[] bytes_sha1_out
=
sha1.ComputeHash(bytes_sha1_in);
string
str_sha1_out
=
BitConverter.ToString(bytes_sha1_out);
//
str_sha1_out = str_sha1_out.Replace("-", "");
return
str_sha1_out;
}
}
}
源码附件:
/Files/bluesky521/DES_Hash_Demo.rar
查看全文
相关阅读:
cloudstack secondary vm starting
什么东西有机会
ansible 远程以普通用户执行命令
python 爬虫--同花顺-使用代理
python3 Beautifulsoup <class 'bs4.element.ResultSet'> <class 'bs4.element.Tag'> 取值
python3 raise HTTPError(req.full_url, code, msg, hdrs, fp) urllib.error.HTTPError: HTTP Error 403: Forbid
kubernetes 生命周期问题分析
'utf-8' codec can't decode byte 0xbc in position 1182: invalid start byte
找回Firefox4的状态栏!Status-4-Evar扩展
生命周期和Zend引擎
原文地址:https://www.cnblogs.com/SummerRain/p/1005593.html
最新文章
逼死欧建新的不是中兴,而是现实
在Windows下安装Linux
Linux下分析磁盘镜像
Linux内核编译:很少有人提及的一些内容
安装Linux软件时没有图形界面的问题
EINTR与ERESTARTSYS
platform device和platform driver简述
signal简述
LwIP下一种可能耗尽内存的情况
LwIP raw api下使用tcp keep alive
热门文章
typedef与前向声明
http协议
浮动布局
弹窗功能
移动h5自适应布局
flex布局demo
flex布局(主要分清楚容器和条目)
一些常用的meta标签及其作用
cloudstack 创建虚拟机失败
[c.c.a.m.AgentManagerImpl] (AgentConnectTaskPool-39:ctx-c37090c5) Failed to handle host connection: java.lang.IllegalArgumentException: Can't add host: with h
Copyright © 2011-2022 走看看