码迷,mamicode.com
首页 >  
搜索关键字:cryptography    ( 396个结果
C# MD5加密例子
using System.Security.Cryptography; // /// MD5 32位加密 /// /// /// private string UserMd5(string str) ...
分类:Windows程序   时间:2015-09-09 17:36:57    阅读次数:152
关于网上常见的几种MD5加密的区别
(1)using System.Security.Cryptography; byte[] result = Encoding.Default.GetBytes(yps); //tbPass为输入密码的文本框 MD5 md5 = new MD5CryptoSe...
分类:其他好文   时间:2015-08-31 23:08:09    阅读次数:166
关于PKCS的文档资料
关于PKCS的文档资料,在这里查找:http://www.emc.com/emc-plus/rsa-labs/standards-initiatives/public-key-cryptography-standards.htm
分类:其他好文   时间:2015-08-31 19:03:08    阅读次数:143
md5加密
using System;using System.Collections.Generic;using System.Security.Cryptography;using System.Text;namespace ConsoleApplication2{ class Program ...
分类:其他好文   时间:2015-08-28 09:30:51    阅读次数:104
Apache Module mod_ssl
http://httpd.apache.org/docs/current/mod/mod_ssl.htmlDescription:Strong cryptography using the Secure Sockets Layer (SSL) and Transport Layer Security...
分类:Web程序   时间:2015-08-27 12:40:37    阅读次数:155
DESCryptoServiceProvider 加密与解密
using System.Security.Cryptography; /// /// 加密 /// /// /// /// public string Encrypt(string pToEncrypt, string sKey) { DESCryptoServiceProvider d...
分类:其他好文   时间:2015-08-26 17:30:14    阅读次数:150
关于MD5值加密算法
public static string getMD5(string str)//该方法获取字符串的md5加密 通常用来验证数据     {         System.Security.Cryptography.MD5CryptoServiceProvider md5 = new System.Security.Cryptography.MD5CryptoServiceProvider()...
分类:编程语言   时间:2015-08-19 16:44:19    阅读次数:149
PDF目录标签自动生成示范 《Handbook.of.Applied.Cryptography》(Alfred.J..Menezes).pdf
利用JavaScript自动生PDF书签目录  使用软件版本 Acrobat XI 大多数的扫描版PDF电子图书都可以在官网或者各大网上书店找到目录,很多都是带有页码的。 通过脚本可以将目录自动转化为书签,添加到PDF中。 把目录数据复制粘贴到一个文本文件中,确保每一行都是一条书签,然后合并成一行内容,并将所有换行符用 "\n" 字符替换作为 JavaScript 的...
分类:移动开发   时间:2015-08-07 20:09:43    阅读次数:251
MD5加密
引用:using System.Security.Cryptography;类:public class MD5Util { public static string GetMD5(string input) { return GetMD5(i...
分类:其他好文   时间:2015-08-06 12:56:13    阅读次数:105
Automotive Security的一些资料和心得(2):Cryptography
1. Security Goal- Confidentiality- Integrity- Availability- Authenticity- Non-repudiation- Authorisation- Accounting2. Cryptography非常大的topic,,,网络上很多资料...
分类:其他好文   时间:2015-08-06 12:54:40    阅读次数:144
396条   上一页 1 ... 23 24 25 26 27 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!