一:上图二:代码主界面代码using System;using
System.Collections.Generic;using System.ComponentModel;using System.Data;using
System.Drawing;using System.Linq;using ...
界面显示:
加密:
解密:
代码实现:
public string EncryptString(string str)
{
#region 加密程序
char[] Base64Code = new char[] { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', ...
using System.Security.Cryptography; //用的类 /// ///
DES加密/解密类。 /// public class DESEncrypt { public DESEncrypt() { ...
分类:
其他好文 时间:
2014-05-12 10:38:19
阅读次数:
235
本文转载至http://jingyan.baidu.com/article/93f9803fff45c9e0e46f5596.html从参考资料的地址中下载GTMBase64.zip库文件包,并解压,获得GTMBase64.h,GTMBase64.m和GTMDefines.h三个文件。将解压得到的三...
分类:
移动开发 时间:
2014-05-08 23:35:21
阅读次数:
461
1 keytool命令总结
一、创建数字证书
交互模式
使用默认的密钥库.keystore(目录是c: Documents and Setting用户名)和算法(DSA)
keytool -genkey
默认的别名mykey
密钥库中可以存放多个条目(公钥/私钥对和证书),它们在密钥库中以别名(alias)区分。
[plain] view
...
分类:
编程语言 时间:
2014-05-04 00:32:09
阅读次数:
1113
文中首先解释了加密解密的一些基础知识和概念,然后通过一个加密通信过程的例子说明了加密算法的作用,以及数字证书的出现所起的作用。接着对数字证书做一个详细的解释,并讨论一下windows中数字证书的管理,最后演示使用makecert生成数字证书。如果发现文中有错误的地方,或者有什么地方说得不够清楚,欢迎指出!
1、基础知识
这部分内容主要解释一些概念和术语,最好是先理...
分类:
其他好文 时间:
2014-05-04 00:08:29
阅读次数:
382
先加密游戏资源然后改cocos2dx底层代码,在读取的时候进行解密 1 unsigned
char* CCFileUtils::getFileData(const char* pszFileName, const char* pszMode,
unsigned long * pSize) 2 { 3...
分类:
其他好文 时间:
2014-05-01 15:38:50
阅读次数:
285
java进阶12 Base64 UrlBase64 Hex 加密 解密技术
分类:
编程语言 时间:
2014-04-29 18:45:01
阅读次数:
873
1 package com.test; 2 3 import java.io.File; 4
import java.io.FileInputStream; 5 import java.io.FileOutputStream; 6 import
java.io.InputStream...
分类:
编程语言 时间:
2014-04-29 11:35:47
阅读次数:
520