码迷,mamicode.com
首页 >  
搜索关键字:cryptography    ( 396个结果
System.Security.Cryptography.CryptographicException,密钥集不存在
非常感谢,已经解决了。是当前用户没有权限访问证书的私钥文件的问题,之前尝试去解决,但是在对:C:\Documents and Settings\All Users\Application Data\Microsoft\Crypto\RSA\MachineKeys这个目录授权的时候出错了,一直报这个错 ...
分类:其他好文   时间:2016-12-29 07:14:53    阅读次数:148
C#DES加密解密字符串
1.添加引用usingSystem.Security.Cryptography; usingSystem.IO;2.添加默认密匙向量//默认密钥向量 privatestaticbyte[]Keys={0x12,0x34,0x56,0x78,0x90,0xAB,0xCD,0xEF};3.添加加密解密类///<summary> ///DES加密字符串 ///</summary> ///<paramname="encryptS..
分类:Windows程序   时间:2016-12-23 23:20:38    阅读次数:308
command 'x86_64-linux-gnu-gcc' failed with exit status 1错误及解决方案
Ubuntu16.04安装Scrapy(pip install Scrapy)时提示错误如下: 解决办法,参考:http://stackoverflow.com/questions/22073516/failed-to-install-python-cryptography-package-with ...
分类:系统相关   时间:2016-12-09 08:36:45    阅读次数:1179
pip安装paramiko失败_Macos版本10.11.6
报错信息: sudo pip install cryptography Password: The directory '/Users/wanghao/Library/Caches/pip/http' or its parent directory is not owned by the curre ...
分类:系统相关   时间:2016-12-03 21:22:22    阅读次数:373
个人理解c#对称加密 非对称加密 散列算法的应用场景
c#类库默认实现了一系列加密算法在System.Security.Cryptography; 命名空间下 对称加密 通过同一密匙进行加密和解密。往往应用在内部数据传输情况下。比如公司a程序 和B程序 。a程序要给B程序发送数据 但是为了防止明文发送 数据被窃取。那么我就定了一个协议传输的数据的byt ...
分类:编程语言   时间:2016-12-01 16:19:07    阅读次数:281
.pfx格式和.Cer格式的区别
注:本文为个人学习摘录,原文地址:http://blog.csdn.net/ghevinn/article/details/12648043 作为文件形式存在的证书一般有这几种格式: 1.带有私钥的证书 由Public Key Cryptography Standards #12,PKCS#12标准 ...
分类:其他好文   时间:2016-11-30 19:56:46    阅读次数:151
.Net使用system.Security.Cryptography.RNGCryptoServiceProvider类与System.Random类生成随机数
.Net中我们通常使用Random类生成随机数,在一些场景下,我却发现Random生成的随机数并不可靠,在下面的例子中我们通过循环随机生成10个随机数: 测试生成随时基本都是相同的结果: 很显然上面的结果是不靠谱的,为什么会这样呢,因为微软的Random类,发现在C#中生成随机数使用的算法是线性同余 ...
分类:Web程序   时间:2016-11-30 03:44:58    阅读次数:268
[POJ2109]Power of Cryptography
[POJ2109]Power of Cryptography 试题描述 Current work in cryptography involves (among other things) large prime numbers and computing powers of numbers amo ...
分类:其他好文   时间:2016-11-26 11:47:03    阅读次数:249
Windows 下安装cryptography-1.6
由于proxy限制不能使用pip install cryptography命令安装cryptography,所以安装这个python库折腾了一天多的时间,差点就怀疑人生了,好在柳暗花明,惊喜出现了。下面共享一下经验: 环境 win7,34位 下载cryptography1.6 网址 https:// ...
分类:Windows程序   时间:2016-11-24 14:29:16    阅读次数:3088
加解密封装
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Security.Cryptography;using System.Text;using System.Thre ...
分类:其他好文   时间:2016-11-22 12:03:17    阅读次数:205
396条   上一页 1 ... 16 17 18 19 20 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!