using System;using System.IO;using System.Collections.Generic;using System.Linq;using System.Text;using System.Security.Cryptography;namespace Des{ .....
using System;using System.IO;using System.Security.Cryptography;namespace RijndaelManaged_Example{ class RijndaelExample { public static ...
using System;using System.Collections.Generic;using System.Linq;using System.Security.Cryptography;using System.Text;using System.Threading.Tasks;name...
分类:
Web程序 时间:
2015-01-29 19:05:40
阅读次数:
246
cs代码using System;using System.Collections.Generic;using System.Linq;using System.Security.Cryptography.X509Certificates;using System.Web;using System....
分类:
其他好文 时间:
2015-01-27 00:15:07
阅读次数:
144
MD5 加密using System.Security.Cryptography;public static string encrypherment(string password) { string StrEncipherment = ""; ...
分类:
其他好文 时间:
2015-01-24 11:22:23
阅读次数:
90
私钥加密(对称加密 symmetric cryptography):私钥加密算法使用单个私钥来加密和解密数据。由于具有密钥的任意一方都可以使用该密钥解密数据,因此必须保护密钥不被未经授权的代理得到。私钥加密又称为对称加密,因为同一密钥既用于加密又用于解密。私钥加密算法非常快(与公钥算法相比),特别适...
分类:
其他好文 时间:
2015-01-22 13:00:35
阅读次数:
230
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Security.Cryptography.X509Certificates;
n...
using System;using System.Collections.Generic;using System.Text;using System.Security.Cryptography;using System.IO;namespace EncryptAndDecrypt{ pub...
Power of Cryptography
Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld
& %llu
Submit Status
Description
Power of Cryptography
Background
Cu...
分类:
其他好文 时间:
2015-01-04 10:06:18
阅读次数:
156
一、密码学的起源与发展
密码学英文名称为Cryptography,密码学最为一门学科,是最近几十年开始迅速被人们重视和发展起来的。密码学往往与信息安全四个字精密的联系着。最早的密码学的”始祖”可以说是早在公元前几百年就已经出现了,当然,当时不会出现像现在这么复杂的安全体系。但是为了避免纯明文式的信息暴露,会有一个字符映射规则,本身的一个字符用另外一个字符代替,只有发送接收方都知道这样的规则,才能...
分类:
其他好文 时间:
2015-01-02 17:34:31
阅读次数:
162