码迷,mamicode.com
首页 >  
搜索关键字:cryptography    ( 396个结果
C# DES加密解密
using System;using System.IO;using System.Collections.Generic;using System.Linq;using System.Text;using System.Security.Cryptography;namespace Des{ .....
分类:Windows程序   时间:2015-02-08 19:22:06    阅读次数:196
C# CryptoStream
using System;using System.IO;using System.Security.Cryptography;namespace RijndaelManaged_Example{ class RijndaelExample { public static ...
分类:Windows程序   时间:2015-02-04 12:26:27    阅读次数:176
.net 哈希
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
解析xml
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 加密
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
C#遍历数字证书
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...
分类:Windows程序   时间:2015-01-22 09:26:35    阅读次数:194
C# Base64加解密
using System;using System.Collections.Generic;using System.Text;using System.Security.Cryptography;using System.IO;namespace EncryptAndDecrypt{ pub...
分类:Windows程序   时间:2015-01-19 20:42:04    阅读次数:196
UVA 113-Power of Cryptography(二分+double处理大数据)
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
396条   上一页 1 ... 29 30 31 32 33 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!