码迷,mamicode.com
首页 >  
搜索关键字:cryptography    ( 396个结果
C# 模拟Http/Https请求框架类
using System.Text;using System.Net;using System.IO;using System.Text.RegularExpressions;using System.Security.Cryptography.X509Certificates;using Syst...
分类:Windows程序   时间:2014-12-26 16:39:20    阅读次数:1824
加盐密码哈希:如何正确使用
一篇很棒的文章。http://blog.jobbole.cousing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Security.Cryptography;nam...
分类:其他好文   时间:2014-12-25 12:50:31    阅读次数:135
UVA - 113 Power of Cryptography (大数幂+二分)
打开链接 给定n和p,找出 k使得  k^n==p 。1 我们可以二分k,用高精度表示出k^n 然后跟p比较。 #include #include #include const int maxn = 1000000000; struct bign { int len; int f[1500]; bign() {memset(f,0,sizeof(f)); len=0;...
分类:其他好文   时间:2014-12-24 18:12:57    阅读次数:136
poj 2109 Power of Cryptography
题目链接: http://poj.org/problem?id=2109题目描述: 给n,p。肯定有k(1 2 #include 3 #include 4 #include 5 #define INF 1000000000 6 #define N 110 7 8 int a[N], b[...
分类:其他好文   时间:2014-12-16 20:58:29    阅读次数:198
[ArgumentException: 可能证书“CN=JRNet01-PC”没有能够进行密钥交换的私钥,或者进程可能没有访问私钥的权限。有关详细信息,请参见内部异常。]
堆栈跟踪: [CryptographicException: 密钥集不存在。] System.Security.Cryptography.Utils.CreateProvHandle(CspParameters parameters, Boolean randomKeyContainer) +4.....
分类:Web程序   时间:2014-12-16 11:16:51    阅读次数:344
md5类
using System;using System.Security.Cryptography;using System.Text;namespace MD5Sample{ class Program { static void Main(string[] args) ...
分类:其他好文   时间:2014-12-11 20:48:33    阅读次数:223
C# 字符串加密解密函数
原文:C#字符串加密解密函数 usingSystem; usingSystem.Text;usingSystem.Security.Cryptography; usingSystem.IO; //默认密钥向量privatestaticbyte[]Keys={0x12,0x34,0x56,0x78,0...
分类:Windows程序   时间:2014-12-08 15:28:52    阅读次数:339
微软RC2CryptoServiceProvider 加解密
using System; using System.IO; using System.Text; using System.Security.Cryptography; namespace RC2CryptoServiceProvider_Examples { class MyMainClass1 { public static void Main() ...
分类:其他好文   时间:2014-11-27 19:02:17    阅读次数:150
NET中如何操作数字证书详解
.NET为我们提供了操作数字证书的两个主要的类,分为为:System.Security.Cryptography.X509Certificates.X509Certificate2类,每个这个类的实例可以表示一个证书;System.Security.Cryptography.X509Certific...
分类:Web程序   时间:2014-11-17 17:24:21    阅读次数:218
加密学教程(Cryptography Tuturials)目录
加密学教程(Cryptography Tuturials)目录...
分类:其他好文   时间:2014-11-11 10:57:09    阅读次数:286
396条   上一页 1 ... 30 31 32 33 34 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!