zoukankan
html css js c++ java
简单的使用.NET加密
对称加密算法:
using System;
using System.Security.Cryptography;
using System.Text;
using System.IO;
///
<summary>
/// 使用对称加密的例子
///
</summary>
class Class1
{
static
void
Main(
string[] args)
{
Class1 c
=
new Class1();
c.StartDemo();
}
public
void StartDemo()
{
//
establish symmetric algorithm
SymmetricAlgorithm sa
= Rijndael.Create();
//
key and iv
sa.GenerateKey();
//产生随机的 (32*8) 位的密钥
//
sa.GenerateIV();
//
初始向量,在ECB模式里面可以不用IV
sa.Mode
=
CipherMode.ECB;
//
块处理模式
sa.Padding
=
PaddingMode.Zeros;
//
末尾数据块的填充模式
Console.WriteLine("
密钥是:
"
);
for
(
int
i
=
0
; i
<
sa.Key.Length; i
++
)
{
Console.Write(
"
{0:X2}
"
,sa.Key[i]);
}
Console.WriteLine(
"
\n
"
);
//
establish crypto stream
MemoryStream ms
=
new MemoryStream();
CryptoStream cs
=
new CryptoStream(ms,sa.CreateEncryptor(),CryptoStreamMode.Write);
string
plaintext;
//
原始文本
byte
[] cipherbytes;
//
加密后的数据
byte
[] finalbytes;
//
解密后的数据
plaintext=
"
How are you? 这是一行文字。
";
byte
[] plainbytes
= Encoding.UTF8.GetBytes(plaintext);
Console.WriteLine(
"
原始文本是:\n{0}\n
",plaintext);
//
display plaint text byte array in hex format
Console.WriteLine(
"
原始数据是:
"
);
for
(
int
i
=
0
; i
<
plainbytes.Length; i
++
)
{
Console.Write(
"
{0:X2}
"
,plainbytes[i]);
}
Console.WriteLine(
"
\n
"
);
//
加密过程
cs.Write(plainbytes,
0, plainbytes.Length);
cs.Close();
cipherbytes
= ms.ToArray();
ms.Close();
//
display ciphertext byte array in hex format
Console.WriteLine(
"
加密后的数据是:
"
);
for
(
int
i
=
0
; i
<
cipherbytes.Length; i
++
)
{
Console.Write(
"
{0:X2}
"
,cipherbytes[i]);
}
Console.WriteLine(
"
\n
"
);
//
下面的为加密过程
ms
=
new MemoryStream(cipherbytes);
cs
=
new CryptoStream(ms,sa.CreateDecryptor(),CryptoStreamMode.Read);
finalbytes
=
new
byte[plainbytes.Length];
cs.Read(finalbytes,
0,plainbytes.Length);
Console.WriteLine(
"
解密后的数据是:
"
);
for
(
int
i
=
0
; i
<
finalbytes.Length; i
++
)
{
Console.Write(
"
{0:X2}
"
,finalbytes[i]);
}
Console.WriteLine(
"
\n
"
);
string
finaltext
=Encoding.UTF8.GetString(finalbytes);
Console.WriteLine(
"
解密后的文本是:\n{0}\n\n
",finaltext );
Console.WriteLine(
"
按任意键继续
");
Console.ReadLine();
}
}
非对称加密算法:
using
System;
using
System.IO;
using
System.Text;
using
System.Security.Cryptography;
/**/
///
<summary>
///
一个简单的使用.NET非对称加密算法的例子
///
本例的程序很简单,仅用于说明如何在.NET里面使用非对称(RSA)算法。
///
Kwanhong 2005.9
///
</summary>
class
Class1
{
public
static
void
Main(
string
[] args)
{
Class1 c
=
new
Class1();
c.StartDemo();
}
public
void
StartDemo()
{
//
RSA的加解密过程:
//
有 rsa1 和 rsa2 两个RSA对象。
//
现在要 rsa2 发送一段信息给 rsa1, 则先由 rsa1 发送“公钥”给 rsa2
//
rsa2 获取得公钥之后,用来加密要发送的数据内容。
//
rsa1 获取加密后的内容后,用自己的私钥解密,得出原始的数据内容。
RSACryptoServiceProvider rsa1
=
new
RSACryptoServiceProvider();
RSACryptoServiceProvider rsa2
=
new
RSACryptoServiceProvider();
string
publickey;
publickey
=
rsa1.ToXmlString(
false
);
//
导出 rsa1 的公钥
string
plaintext;
plaintext
=
"
你好吗?这是用于测试的字符串。
"
;
//
原始数据
Console.WriteLine(
"
原始数据是:\n{0}\n
"
,plaintext);
rsa2.FromXmlString(publickey);
//
rsa2 导入 rsa1 的公钥,用于加密信息
//
rsa2开始加密
byte
[] cipherbytes;
cipherbytes
=
rsa2.Encrypt(
Encoding.UTF8.GetBytes(plaintext),
false
);
/**/
/*
//////////////////////////////////////////////
*/
Console.WriteLine(
"
加密后的数据是:
"
);
for
(
int
i
=
0
; i
<
cipherbytes.Length; i
++
)
{
Console.Write(
"
{0:X2}
"
,cipherbytes[i]);
}
Console.WriteLine(
"
\n
"
);
/**/
/*
//////////////////////////////////////////////
*/
//
rsa1开始解密
byte
[] plaintbytes;
plaintbytes
=
rsa1.Decrypt(cipherbytes,
false
);
Console.WriteLine(
"
解密后的数据是:
"
);
Console.WriteLine(Encoding.UTF8.GetString(plaintbytes));
Console.ReadLine();
}
}
查看全文
相关阅读:
IOS 关于分辨率的那点事
IOS多线程编程之NSOperation和NSOperationQueue的使用
UI应遵循的三大网站设计原则
Xcode 4.4中LLVM compiler 4.0带来的ObjectiveC新语法特性
iPhone实战:操作SQLite
flock()函数使用示例
libtool: syntax error near unexpected token `]*'
求职简历撰写要点
thrift的js客户端收到含汉字字符中显示为乱码解决方法
多写引发的思考
原文地址:https://www.cnblogs.com/studio313/p/298953.html
最新文章
项目经理与部门经理之间的关系
项目经理三年心得和经验总结
在项目管理中如何打造一支高效团队
项目管理13禁忌[转]
CVS SVN VSS 使用对比
浅谈工程项目的进度管理
经验借鉴:项目经理管理经验总结
经验借鉴:一个系统集成项目的烦恼
项目经理需要具有的特质
项目整合监督项目工作
热门文章
文字编码
猪悟能淘宝店商品下载专家 v1.2
易语言多线程出错的问题
AnyProxy + 源代码
猪悟能论坛看贴工具(Discuz!7版) v1.0
[iOS] iOS 6的Rotation
IOS多线程编程之NSThread的使用
iPhone5官网剖析 看苹果公司如何用设计元素
UITableView的使用大全
ObjectiveC SQLite数据库封装FMDB的介绍
Copyright © 2011-2022 走看看