using System; using System.Text; using System.IO; using System.Security; using System.Security.Cryptography; namespace Tgnet.Base.Security { /**...
分类:
Web程序 时间:
2014-07-22 22:54:32
阅读次数:
206
Description
Current work in cryptography involves (among other things) large prime numbers and computing powers of numbers among these primes. Work in this area has resulted in the practical use of...
分类:
其他好文 时间:
2014-07-17 10:12:16
阅读次数:
191
https://www.bouncycastle.org/The Bouncy Castle APIs currently consist of the following:A lightweight cryptography API for Java and C#.A provider for t...
分类:
其他好文 时间:
2014-07-16 21:46:57
阅读次数:
157
using System;
using System.Security.Cryptography;
using System.Text;
namespace Maticsoft.DBUtility
{
///
/// DES加密/解密类。
///
public class DESEncrypt
{
public DESEncrypt()
{
}
#regi...
分类:
其他好文 时间:
2014-07-16 11:21:38
阅读次数:
194
C#MD5加密1、应用命名空间using System.Security.Cryptography;View Code2.添加方法 private string GetMD5(string str) { MD5CryptoServiceProvide...
分类:
其他好文 时间:
2014-07-14 08:14:18
阅读次数:
227
using System;//这个是使用DES的基础using System.Security.Cryptography;//这个是处理文字编码的前提using System.Text;//以“流”的形式处理文字,也是微软DES算法要求的using System.IO;/// /// DES加密方法...
分类:
其他好文 时间:
2014-07-13 08:07:51
阅读次数:
198
poj2109 Power of Cryptography(数学题)...
分类:
其他好文 时间:
2014-07-12 20:48:01
阅读次数:
279
Power of Cryptography
Time Limit: 1000MS
Memory Limit: 30000K
Total Submissions: 18258
Accepted: 9208
Description
Current work in cryptography involves (among oth...
分类:
其他好文 时间:
2014-07-10 23:57:35
阅读次数:
335
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Security;
using System.Security.Cryptography.X509Certificates;
using System.Text;...
背景介绍近期在看《password学与网络安全》相关的书籍,这篇文章主要具体介绍一下著名的网络安全协议SSL。 在開始SSl介绍之前,先给大家介绍几个password学的概念和相关的知识。 1、password学的相关概念password学(cryptography):目的是通过将信息编码使其不可读...
分类:
其他好文 时间:
2014-07-06 19:12:02
阅读次数:
175