码迷,mamicode.com
首页 >  
搜索关键字:cryptography    ( 396个结果
openpgp
http://www.openpgp.org/about_openpgp/history.shtmlHistoryOpenPGP is a non-proprietary protocol for encrypting email using public key cryptography. It ...
分类:其他好文   时间:2015-03-20 10:38:45    阅读次数:131
微信公众号发起微信支付 c#
tenpay.dll:MD5Util.csusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Security.Cryptography;namespace te...
分类:微信   时间:2015-03-18 12:02:04    阅读次数:408
connectionString加密
首先是加密,解密类。using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Security.Cryptography;using System.Text;using S...
分类:其他好文   时间:2015-03-10 15:24:01    阅读次数:143
C#加密解密DES字符串<转>
using System;using System.Collections.Generic;using System.Text;using System.Security.Cryptography;using System.IO;namespace Component{ public clas...
分类:Windows程序   时间:2015-03-07 18:38:30    阅读次数:181
Power of Cryptography
DescriptionCurrent work in cryptography involves (among other things) large prime numbers and computing powers of numbers among these primes. Work in ...
分类:其他好文   时间:2015-03-04 14:19:10    阅读次数:135
Power of Cryptography(用double的泰勒公式可行分析)
Power of CryptographyTime limit: 3.000 secondshttp://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=99&page=show_problem&probl...
分类:其他好文   时间:2015-02-24 13:48:03    阅读次数:172
各种加密算法
md5: private string MD5(string source) { StringBuilder sb = new StringBuilder(); System.Security.Cryptography.MD5 md5 = S...
分类:编程语言   时间:2015-02-16 20:56:44    阅读次数:189
asp.neti 加密三种方式
public string Get_MD5_Method1(string strSource) { System.Security.Cryptography.MD5 md5 = new System.Security.Cryptography.MD5CryptoS...
分类:Web程序   时间:2015-02-10 15:14:32    阅读次数:116
md5加密
先引用两个命名空间using System.Security.Cryptography;using System.Text;以下是md5加密方法/// /// md5加密--32位 /// /// /// public s...
分类:其他好文   时间:2015-02-09 17:55:56    阅读次数:104
poj2109Power of Cryptography
背景:题目不难,但由于是第一次用二分法写代码,在结束条件那个地方纠结了半天。 思路:简单二分法。 学习:二分法:当数据量很大适宜采用该方法。采用二分法查找时,数据需是排好序的。主要思想是:(设查找的数组区间为array[low, high])(1)确定该期间的中间位置K(2)将查找的值T与array[k]比较。若相等,查找成功返回此位置;否则确定新的查找区域,继续二分查找。区域确定如下:a.a...
分类:其他好文   时间:2015-02-09 16:09:48    阅读次数:168
396条   上一页 1 ... 28 29 30 31 32 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!