码迷,mamicode.com
首页 >  
搜索关键字:cryptography    ( 396个结果
C#一个字符串的加密与解密
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Security.Cryptography; using System.IO; namespace C ...
分类:Windows程序   时间:2016-08-30 21:25:31    阅读次数:216
C# 加密
一、RSA加密解密 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Security.Cryptography; using System.Text; u ...
分类:Windows程序   时间:2016-08-24 17:17:48    阅读次数:256
暑假练习赛 007 B - Weird Cryptography
Weird Cryptography Description standard input/outputStatements Khaled was sitting in the garden under an apple tree, suddenly! , well... you should gu ...
分类:其他好文   时间:2016-08-23 23:20:45    阅读次数:165
C# AES 加密
using System.Security.Cryptography; AES可以直接调用 好像只有ECB CBC CFB可以直接用,CTR OFB不知道怎么用 ...
分类:Windows程序   时间:2016-08-23 14:43:23    阅读次数:642
C# RSA
RSA加解密 using System.Security.Cryptography; private void button18_Click(object sender, EventArgs e)//RSA加密 { bool RSA_Mode = radioButton13.Checked; //填 ...
分类:Windows程序   时间:2016-08-23 14:43:09    阅读次数:407
C# DES
DES加密 using System.Security.Cryptography; 和AES一样只知道 ECB CBC CFB模式的用法 static class MyDES { static PaddingMode[] padding = { PaddingMode.PKCS7, PaddingM ...
分类:Windows程序   时间:2016-08-23 14:35:22    阅读次数:302
转:system.Security.Cryptography C# 加密和解密
以下文转自: http://www.360doc.com/content/13/0122/05/19147_261678471.shtml 总结:注册的时候经过MD5加密存进数据库,在登录的时候需要先加密输入的密码,再进行和数据库里的比对,因为同一字符串加密后是一样的,并不是无规则的:实例: str ...
分类:Windows程序   时间:2016-08-12 23:43:51    阅读次数:742
C#利用HttpWebRequest进行post请求的示例(HTTPS)
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net.Security; using System.Security.Cryptography.X5 ...
分类:Windows程序   时间:2016-08-11 15:30:47    阅读次数:213
ACM: Gym 100935B Weird Cryptography - 简单的字符串处理
Weird Cryptography Time Limit:2000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u Gym 100935B Weird Cryptography Gym 100935B Description standar ...
分类:其他好文   时间:2016-08-11 00:38:39    阅读次数:157
SymmetricAlgorithmHelper对称加密辅助类,支持DES,3DES,AES,RC2
理论上只要继承自SymmetricAlgorithm的对称加密算法,该辅助类都支持加密解密,另外为了方便与JAVA互通,默认提供了ECB和CBC两种加密模式、填充方式均为PKCS7的静态方法 using System.Security.Cryptography; public class SymmetricAlgorithmHelper where T : Symme...
分类:其他好文   时间:2016-07-14 15:39:42    阅读次数:149
396条   上一页 1 ... 18 19 20 21 22 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!