重新想象 Windows 8 Store Apps (31) - 加密解密: 哈希算法, 对称算法
原文:重新想象 Windows 8 Store Apps (31) - 加密解密: 哈希算法, 对称算法
作者:webabcd
介绍
重新想象 Windows 8 Store Apps 之 加密解密
- hash 算法(MD5, SHA1, SHA256, SHA384, SHA512)
- hmac 算法(MD5, SHA1, SHA256, SHA384, SHA512)
- 本地数据的加密解密
- 对称算法(AES, DES, 3DES, RC2, RC4)
示例
1、演示如何使用 hash 算法(MD5, SHA1, SHA256, SHA384, SHA512)
Crypto/Hash.xaml.cs
/*
* 演示如何使用 hash 算法(MD5, SHA1, SHA256, SHA384, SHA512)
*/ using System;
using Windows.Security.Cryptography;
using Windows.Security.Cryptography.Core;
using Windows.Storage.Streams;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls; namespace XamlDemo.Crypto
{
public sealed partial class Hash : Page
{
public Hash()
{
this.InitializeComponent();
} private void btnDemo_Click(object sender, RoutedEventArgs e)
{
string plainText = "i am webabcd"; lblMsg.Text = "原文: " + plainText;
lblMsg.Text += Environment.NewLine;
lblMsg.Text += Environment.NewLine; string[] algorithmNames = { "MD5", "SHA1", "SHA256", "SHA384", "SHA512" }; foreach (var algorithmName in algorithmNames)
{
// 根据算法名称实例化一个哈希算法提供程序
HashAlgorithmProvider hashAlgorithm = HashAlgorithmProvider.OpenAlgorithm(algorithmName);
// hashAlgorithm.HashLength - 哈希后的值的长度,单位:字节 // 原文的二进制数据
IBuffer vector = CryptographicBuffer.ConvertStringToBinary(plainText, BinaryStringEncoding.Utf8); // 哈希二进制数据
IBuffer digest = hashAlgorithm.HashData(vector); lblMsg.Text += algorithmName + ": " + CryptographicBuffer.EncodeToHexString(digest);
lblMsg.Text += Environment.NewLine; // 创建一个可重用的 CryptographicHash 对象
CryptographicHash reusableHash = hashAlgorithm.CreateHash();
reusableHash.Append(CryptographicBuffer.ConvertStringToBinary("i ", BinaryStringEncoding.Utf8)); // 向 CryptographicHash 中追加需要哈希的二进制数据
reusableHash.Append(CryptographicBuffer.ConvertStringToBinary("am ", BinaryStringEncoding.Utf8)); // 向 CryptographicHash 中追加需要哈希的二进制数据
reusableHash.Append(CryptographicBuffer.ConvertStringToBinary("webabcd", BinaryStringEncoding.Utf8)); // 向 CryptographicHash 中追加需要哈希的二进制数据 // 获取哈希后的数据,然后清空 CryptographicHash 中的数据
digest = reusableHash.GetValueAndReset(); lblMsg.Text += algorithmName + ": " + CryptographicBuffer.EncodeToHexString(digest);
lblMsg.Text += Environment.NewLine;
lblMsg.Text += Environment.NewLine;
}
}
}
}
2、演示如何使用 hmac 算法(HMAC_MD5, HMAC_SHA1, HMAC_SHA256, HMAC_SHA384, HMAC_SHA512)
Crypto/Hmac.xaml.cs
/*
* 演示如何使用 hmac 算法(HMAC_MD5, HMAC_SHA1, HMAC_SHA256, HMAC_SHA384, HMAC_SHA512)
*
* 注:hmac 相当于带密钥的 hash,可以理解为将信息用密钥加密后再哈希
*/ using System;
using Windows.Security.Cryptography;
using Windows.Security.Cryptography.Core;
using Windows.Storage.Streams;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls; namespace XamlDemo.Crypto
{
public sealed partial class Hmac : Page
{
public Hmac()
{
this.InitializeComponent();
} private void btnDemo_Click(object sender, RoutedEventArgs e)
{
string plainText = "i am webabcd"; lblMsg.Text = "原文: " + plainText;
lblMsg.Text += Environment.NewLine;
lblMsg.Text += Environment.NewLine; string[] algorithmNames = { "HMAC_MD5", "HMAC_SHA1", "HMAC_SHA256", "HMAC_SHA384", "HMAC_SHA512" }; foreach (var algorithmName in algorithmNames)
{
// 根据算法名称实例化一个 hmac 算法提供程序
MacAlgorithmProvider hmacAlgorithm = MacAlgorithmProvider.OpenAlgorithm(algorithmName);
// hmacAlgorithm.MacLength - hmac 后的值的长度,单位:字节 // 创建一个用于 hmac 算法的随机的 key
IBuffer key = CryptographicBuffer.GenerateRandom(hmacAlgorithm.MacLength); // 根据 key 生成 CryptographicKey 对象
CryptographicKey hmacKey = hmacAlgorithm.CreateKey(key); // 根据 hmacKey 签名指定的内容
IBuffer signature = CryptographicEngine.Sign(
hmacKey, // 签名时所用的 key
CryptographicBuffer.ConvertStringToBinary(plainText, BinaryStringEncoding.Utf8) // 需要签名的内容
); lblMsg.Text += algorithmName + ": " + CryptographicBuffer.EncodeToHexString(signature) + " (key: " + CryptographicBuffer.EncodeToHexString(key) + ")";
lblMsg.Text += Environment.NewLine; // 验证签名
bool isAuthenticated = CryptographicEngine.VerifySignature(
hmacKey, // 签名时所用的 key
CryptographicBuffer.ConvertStringToBinary(plainText, BinaryStringEncoding.Utf8), // 需要签名的内容
signature // 签名后的值
); lblMsg.Text += "isAuthenticated: " + isAuthenticated;
lblMsg.Text += Environment.NewLine;
lblMsg.Text += Environment.NewLine;
}
}
}
}
3、演示如何对本地数据进行加密和解密
Crypto/LocalCrypto.xaml.cs
/*
* 演示如何对本地数据进行加密和解密
*/ using System;
using Windows.Security.Cryptography;
using Windows.Security.Cryptography.DataProtection;
using Windows.Storage.Streams;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls; namespace XamlDemo.Crypto
{
public sealed partial class LocalCryptoString : Page
{
public LocalCryptoString()
{
this.InitializeComponent();
} private async void btnDemo_Click(object sender, RoutedEventArgs e)
{
string plainText = "i am webabcd"; lblMsg.Text = "原文: " + plainText;
lblMsg.Text += Environment.NewLine; // 实例化用于加密的 DataProtectionProvider - Local=user 用户级别的本地加解密;LOCAL=machine - 机器级别的本地加解密
DataProtectionProvider provider = new DataProtectionProvider("Local=user"); // "LOCAL=machine" // 原文的二进制数据
IBuffer buffer = CryptographicBuffer.ConvertStringToBinary(plainText, BinaryStringEncoding.Utf8); // 加密数据
IBuffer encrypted = await provider.ProtectAsync(buffer);
// provider.ProtectStreamAsync(); 加密 stream 类型的数据 // 加密后的结果
lblMsg.Text += "encrypted: " + CryptographicBuffer.EncodeToHexString(encrypted);
lblMsg.Text += Environment.NewLine; // 实例化用于解密的 DataProtectionProvider
DataProtectionProvider provider2 = new DataProtectionProvider(); // 解密数据
IBuffer decrypted = await provider2.UnprotectAsync(encrypted);
// provider2.UnprotectStreamAsync(); // 解密 stream 类型的数据 // 解密后的结果
lblMsg.Text += "decrypted: " + CryptographicBuffer.ConvertBinaryToString(BinaryStringEncoding.Utf8, decrypted);
lblMsg.Text += Environment.NewLine;
} }
}
4、演示如何使用对称算法(AES, DES, 3DES, RC2, RC4)
Crypto/Symmetric.xaml.cs
/*
* 演示如何使用对称算法(AES, DES, 3DES, RC2, RC4)
*/ using System;
using Windows.Security.Cryptography;
using Windows.Security.Cryptography.Core;
using Windows.Storage.Streams;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls; namespace XamlDemo.Crypto
{
public sealed partial class Symmetric : Page
{
public Symmetric()
{
this.InitializeComponent();
} private void btnDemo_Click(object sender, RoutedEventArgs e)
{
// 本示例的原文为 16 个字节,是为了正常演示无填充时的加密
// 什么是填充:比如 aes 要求数据长度必须是 16 的倍数,如果不是则需要通过指定的填充模式来补全数据
string plainText = ""; lblMsg.Text = "原文: " + plainText;
lblMsg.Text += Environment.NewLine;
lblMsg.Text += Environment.NewLine; string[] algorithmNames = { "AES_CBC", "AES_ECB", "AES_CBC_PKCS7", "AES_ECB_PKCS7", "DES_CBC", "DES_ECB", "3DES_CBC", "3DES_ECB", "3DES_CBC_PKCS7", "3DES_ECB_PKCS7", "RC2_CBC", "RC2_ECB", "RC4" }; foreach (var algorithmName in algorithmNames)
{
uint keySize = ;
if (algorithmName.StartsWith("AES")) // AES 算法密钥长度 128 位
keySize = ;
else if (algorithmName.StartsWith("DES")) // DES 算法密钥长度 64 位(56 位的密钥加上 8 位奇偶校验位)
keySize = ;
else if (algorithmName.StartsWith("3DES")) // 3DES 算法密钥长度 192 位(3 重 DES)
keySize = ;
else if (algorithmName.StartsWith("RC2")) // RC2 算法密钥长度可变
keySize = ;
else if (algorithmName.StartsWith("RC4")) // RC4 算法密钥长度可变
keySize = ; IBuffer buffer; // 原文
IBuffer encrypted; // 加密后
IBuffer decrypted; // 解密后
IBuffer iv = null; // 向量(CBC 模式) // 根据算法名称实例化一个对称算法提供程序
SymmetricKeyAlgorithmProvider symmetricAlgorithm = SymmetricKeyAlgorithmProvider.OpenAlgorithm(algorithmName); // 创建一个随机密钥 key
IBuffer key = CryptographicBuffer.GenerateRandom(keySize / ); // 根据 key 生成 CryptographicKey 对象
CryptographicKey cryptoKey = symmetricAlgorithm.CreateSymmetricKey(key); // 如果是 CBC 模式则随机生成一个向量
if (algorithmName.Contains("CBC"))
iv = CryptographicBuffer.GenerateRandom(symmetricAlgorithm.BlockLength); // 将需要加密的数据转换为 IBuffer 类型
buffer = CryptographicBuffer.ConvertStringToBinary(plainText, BinaryStringEncoding.Utf8); try
{
// 加密数据
encrypted = CryptographicEngine.Encrypt(cryptoKey, buffer, iv);
}
catch (Exception ex)
{
lblMsg.Text += ex.ToString();
lblMsg.Text += Environment.NewLine;
return;
} // 加密后的结果
lblMsg.Text += algorithmName + " encrypted: " + CryptographicBuffer.EncodeToHexString(encrypted);
lblMsg.Text += Environment.NewLine; CryptographicKey cryptoKey2 = symmetricAlgorithm.CreateSymmetricKey(key);
try
{
// 解密数据
decrypted = Windows.Security.Cryptography.Core.CryptographicEngine.Decrypt(cryptoKey2, encrypted, iv);
}
catch (Exception ex)
{
lblMsg.Text += ex.ToString();
lblMsg.Text += Environment.NewLine;
return;
} // 解密后的结果
lblMsg.Text += algorithmName + " decrypted: " + CryptographicBuffer.ConvertBinaryToString(BinaryStringEncoding.Utf8, decrypted);
lblMsg.Text += Environment.NewLine;
lblMsg.Text += Environment.NewLine;
}
}
}
}
OK
[源码下载]
重新想象 Windows 8 Store Apps (31) - 加密解密: 哈希算法, 对称算法的更多相关文章
- 重新想象 Windows 8 Store Apps (32) - 加密解密: 非对称算法, 数据转换的辅助类
原文:重新想象 Windows 8 Store Apps (32) - 加密解密: 非对称算法, 数据转换的辅助类 [源码下载] 重新想象 Windows 8 Store Apps (32) - 加密 ...
- 重新想象 Windows 8 Store Apps 系列文章索引
[源码下载][重新想象 Windows 8.1 Store Apps 系列文章] 重新想象 Windows 8 Store Apps 系列文章索引 作者:webabcd 1.重新想象 Windows ...
- 重新想象 Windows 8 Store Apps (34) - 通知: Toast Demo, Tile Demo, Badge Demo
[源码下载] 重新想象 Windows 8 Store Apps (34) - 通知: Toast Demo, Tile Demo, Badge Demo 作者:webabcd 介绍重新想象 Wind ...
- 重新想象 Windows 8 Store Apps (35) - 通知: Toast 详解
[源码下载] 重新想象 Windows 8 Store Apps (35) - 通知: Toast 详解 作者:webabcd 介绍重新想象 Windows 8 Store Apps 之 通知 Toa ...
- 重新想象 Windows 8 Store Apps (36) - 通知: Tile 详解
[源码下载] 重新想象 Windows 8 Store Apps (36) - 通知: Tile 详解 作者:webabcd 介绍重新想象 Windows 8 Store Apps 之 通知 Tile ...
- 重新想象 Windows 8 Store Apps (37) - 契约: Settings Contract
[源码下载] 重新想象 Windows 8 Store Apps (37) - 契约: Settings Contract 作者:webabcd 介绍重新想象 Windows 8 Store Apps ...
- 重新想象 Windows 8 Store Apps (38) - 契约: Search Contract
[源码下载] 重新想象 Windows 8 Store Apps (38) - 契约: Search Contract 作者:webabcd 介绍重新想象 Windows 8 Store Apps 之 ...
- 重新想象 Windows 8 Store Apps (39) - 契约: Share Contract
[源码下载] 重新想象 Windows 8 Store Apps (39) - 契约: Share Contract 作者:webabcd 介绍重新想象 Windows 8 Store Apps 之 ...
- 重新想象 Windows 8 Store Apps (40) - 剪切板: 复制/粘贴文本, html, 图片, 文件
[源码下载] 重新想象 Windows 8 Store Apps (40) - 剪切板: 复制/粘贴文本, html, 图片, 文件 作者:webabcd 介绍重新想象 Windows 8 Store ...
随机推荐
- TextKit学习(四)通过boundingRectWithSize:options:attributes:context:计算文本尺寸
之前用Text Kit写Reader的时候,在分页时要计算一段文本的尺寸大小,之前使用了NSString类的sizeWithFont:constrainedToSize:lineBreakMode:方 ...
- <xliff:g>标签
摘要: 这是Android4.3Mms源代码中的strings.xml的一段代码: <!--Settings item desciption for integer auto-delete sm ...
- 最佳新秀SSH(十三)——Spring集装箱IOC分析和简单的实现
时间最近一段时期,"集装箱"这个词一直萦绕在我的耳边,连吃饭.睡在我的脑海里蹦来蹦去的. 由于这几天的交流时间.讨论,对于理解容器逐渐加深. 理论上的东西终归要落实到实践,今天就借 ...
- Nginx 负载均衡-加权轮询策略剖析
本文介绍的是客户端请求在多个后端服务器之间的均衡,注意与客户端请求在多个nginx进程之间的均衡相区别(Nginx根据每个工作进程的当前压力调整它们获取监听套接口的几率,那些当前比较空闲的工作进程有更 ...
- hdu2844(多重背包)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2844 题意:一位同学想要买手表,他有n种硬币,每种硬币已知有num[i]个.已知手表的价钱最多m元,问 ...
- Android从raw、assets、SD卡中获取资源文件内容
先顺带提一下,raw文件夹中的文件会和project一起经过编译,而assets里面的文件不会~~~ 另外,SD卡获取文件需要权限哦! //从res文件夹中的raw 文件夹中获取文件并读取数据 p ...
- js中点击空白区域时文本框与隐藏层的问题
当文本框获得焦点的时候,在文本框的下方显示一个浮动层. 当用户点击除了文本框和浮动层以外的网页空白处时,要隐藏浮动层. 当用户点击浮动层时,改变文本框的值. <!DOCTYPE html PUB ...
- hdu1540(线段树)
题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=1540 题意:是一条线上的点,D x是破坏这个点,Q x是表示查询以x所在的最长的连续的点的个数,R是恢 ...
- SEAndroid安全机制中的进程安全上下文关联分析
前面一篇文章分析了文件安全上下文关联过程.可是在SEAndroid中,除了要给文件关联安全上下文外,还须要给进程关联安全上下文.由于仅仅有当进程和文件都关联安全上下文之后,SEAndroid安全策略才 ...
- CSS背景图拉伸自适应尺寸
.bg{ background:url(images/test.jpg); filter:"progid:DXImageTransform.Microsoft.AlphaImageLoade ...