摘要: 1. WAMP 介绍W指windows运行环境。A指Apache服务器。M指Mysql数据库等...P指PHP或Python服务端语言及环境。2. 下载 Wamp及Visual C++ Redistributable (vcredist_x64/86.exe),wamp依赖于Visual C++ R... 阅读全文
posted @ 2015-04-11 02:44 naray 阅读(1942) 评论(0) 推荐(0) 编辑
摘要: 多进度调试 follow-fork-mode 在2.5.60版Linux内核及以后,GDB对使用fork/vfork创建子进程的程序提供了follow-fork-mode选项来支持多进程调试。 // 例子 set follow-fork-mode [paren... 阅读全文
posted @ 2015-04-09 15:17 naray 阅读(140) 评论(0) 推荐(0) 编辑
摘要: MAC 版反编译获取资源文件下载apktool脚本 wrapper script或 package下载apktool.jar (this here)重命名jar toapktool.jar拷贝文件 (apktool.jar&apktool) to/usr/local/bin(root needed)... 阅读全文
posted @ 2015-04-08 13:56 naray 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 1. 搭建Apache 服务器 (1). 下载 Httpd 及依赖 -- apr、apr-util httpd :http://httpd.apache.org/ apr & apr-util :https://apr.apache.org/ (2). 编译 apr :$ ./... 阅读全文
posted @ 2015-01-15 11:23 naray 阅读(492) 评论(0) 推荐(0) 编辑
摘要: 一、概述二、步骤1.创建代表本机代码的Java类2.创建本机代码的头文件3. 导入C代码执行本地代码4.编译与建立共享库5.在Android中使用C共享库 阅读全文
posted @ 2015-01-13 13:46 naray 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 一、 什么是LAMP ? LAMP指的Linux(操作系统)、ApacheHTTP 服务器,MySQL(有时也指MariaDB,数据库软件) 和PHP(有时也是指Perl或Python) 的第一个字母,一般用来建立web 服务器。二、 配置1. install apache2sudo apt-ge... 阅读全文
posted @ 2015-01-05 10:36 naray 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 一、简介 对称加密(也叫私钥加密)指加密和解密使用相同密钥的加密算法。二、主要算法DES3DESBlowfishIDEARC4RC5RC6AES 阅读全文
posted @ 2014-12-29 15:23 naray 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 一、什么是Hash签名?Hash签名是最主要的数字签名方法,也称之为数字摘要法(Digital Digest)或数字指纹法(Digital Finger Print)。数字摘要就是采用单项Hash函数将需要加密的明文“摘要”成一串固定长度(128位)的密文这一串密文又称为数字指纹,它有固定的长度,而... 阅读全文
posted @ 2014-12-29 15:20 naray 阅读(6013) 评论(0) 推荐(0) 编辑
摘要: 一、简介 公开密钥加密(public-key cryptography,又译为公开密钥加密),也称为非对称加密(asymmetric cryptography),一种密码学算法类型,在这种密码学方法中,需要一对密钥,一是个私人密钥,另一个则是公开密钥。 如果解密密钥是公开的,用私钥加密的信... 阅读全文
posted @ 2014-12-29 15:20 naray 阅读(511) 评论(0) 推荐(0) 编辑
摘要: 一、安装autotools工具sudo apt-get install automakesudo apt-get install autoconf二、autotools是系列工具, 它主要由autoconf、automake、perl语言环境和m4等组成;所包含的命令有五个 :aclocalauto... 阅读全文
posted @ 2014-12-12 17:02 naray 阅读(703) 评论(0) 推荐(0) 编辑