码迷,mamicode.com
首页 >  
搜索关键字:cryptography    ( 396个结果
AES,SHA1,DES,RSA,MD5区别[转]
AES:更快,兼容设备,安全级别高; SHA1:公钥后处理回传 DES:本地数据,安全级别低 RSA:非对称加密,有公钥和私钥 MD5:防篡改 相关: 公开密钥加密(英语:public-key cryptography,又译为公开密钥加密),也称为非对称加密(asymmetric cryptogra
分类:其他好文   时间:2016-02-11 01:40:13    阅读次数:348
.net AES加密解密
using System; using System.Collections.Generic; using System.Text; using System.Security.Cryptography; using System.IO; namespace Csharp { class AESHe
分类:Web程序   时间:2016-01-29 19:34:23    阅读次数:210
RSA加密的测试demo
使用.net自带的RSA,需要引用System.Security.Cryptography 测试环境.net4.6 static void Main(string[] args) { var RSA = new RSACryptoServiceProvider(); var publickKey =
分类:其他好文   时间:2016-01-29 15:52:55    阅读次数:181
使用证书部署出现System.Security.Cryptography.CryptographicException 错误解决方案
一、System.Security.Cryptography.CryptographicException: 找不到对象 at System.Security.Cryptography.CryptographicException.ThrowCryptographicException(Int32 ...
分类:其他好文   时间:2016-01-26 16:32:30    阅读次数:1513
C# 常用加密处理
AESusing System;using System.Security.Cryptography;using System.Text;namespace Common{ public class AESProvider { public static int KEYSI...
分类:Windows程序   时间:2016-01-25 19:07:45    阅读次数:203
对称加密与非对称加密
对称加密与非对称加密(一)对称加密(Symmetric Cryptography)对称加密是最快速、最简单的一种加密方式,加密(encryption)与解密(decryption)用的是同样的密钥(secret key)。对称加密有很多种算法,由于它效率很高,所以被广泛使用在很多加密协议的核心当中。...
分类:其他好文   时间:2016-01-16 07:32:34    阅读次数:1473
C#MD5 32位加密
using System.Security.Cryptography;public static string En32(string str) { string pwd = ""; MD5 md5 = MD5.Create();//实例化一...
分类:Windows程序   时间:2015-12-29 12:49:45    阅读次数:181
加密解密
usingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.Security.Cryptography;usingSystem.IO;namespaceComponent{publicclassSecurity{p...
分类:其他好文   时间:2015-12-28 12:12:17    阅读次数:377
.NET:System.Security.Cryptography.CryptographicException 的解决办法
问题描述:微信退款提示加载证书失败问题(System.Security.Cryptography.X509Certificates.X509Utils._LoadCertFromFile)详细内容参考此网址:http://social.msdn.microsoft.com/Forums/en-US/...
分类:Web程序   时间:2015-12-01 14:53:01    阅读次数:160
openssl的证书格式转换
证书转换PKCS 全称是 Public-Key Cryptography Standards ,是由 RSA 实验室与其它安全系统开发商为促进公钥密码的发展而制订的一系列标准,PKCS 目前共发布过 15 个标准。 常用的有:PKCS#7 Cryptographic Message Syntax S...
分类:其他好文   时间:2015-11-26 17:05:05    阅读次数:167
396条   上一页 1 ... 21 22 23 24 25 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!