一般用于配置密码等敏感信息解密/加密工具类package com.baobaotao.placeholder;import sun.misc.BASE64Decoder;import sun.misc.BASE64Encoder;import javax.crypto.Cipher;import j...
分类:
编程语言 时间:
2015-06-28 15:20:57
阅读次数:
118
增强版对加密串增加到80位,没错产生的哈希值都不相同
package com.rapido.utils;
import org.springframework.security.crypto.password.PasswordEncoder;
import org.springframework.security.crypto.password.StandardPasswordEncode...
分类:
编程语言 时间:
2015-05-21 10:48:38
阅读次数:
122
做android开发,或多或少应该对ndk有些了解。大家都知道,开发android应用很多部分是使用java完成的,但是java语言使用起来虽然简单,但是也比较容易进行反编译,尽管现在网络上有很多的加密工具。那怎么保护应用的一些隐私逻辑模块(加解密)的,ndk是一个很好的选择。
ndk使用c或者cpp完成代码的编写,使用c或者cpp可以将一些模块编译为链接库(so文件),这些...
分类:
移动开发 时间:
2015-05-04 10:02:28
阅读次数:
193
import android.annotation.SuppressLint;
import java.security.SecureRandom;
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import javax.crypto.spec.IvPara...
分类:
移动开发 时间:
2015-04-24 09:20:07
阅读次数:
192
import it.sauronsoftware.base64.Base64;import javax.crypto.Cipher;
import javax.crypto.spec.SecretKeySpec;/** DES 加密的一种,加密秘钥长度为16位.
*/
public class AESC {
private static final String ALGORITHM = "...
分类:
其他好文 时间:
2015-03-16 11:02:33
阅读次数:
207
依赖于java.security.MessageDigest,支持MD5,SHA-1,SHA-256 1 import java.security.MessageDigest; 2 import java.security.NoSuchAlgorithmException; 3 4 /** 5 .....
分类:
编程语言 时间:
2015-03-11 14:19:08
阅读次数:
186
import java.security.MessageDigest;public class EncryptionKit { public static String md5Encrypt(String srcStr){ return encrypt("MD5", sr...
分类:
编程语言 时间:
2015-02-11 16:04:48
阅读次数:
149
今天在客户服务器上,安装产品的时候发现,客户的php源码是用ioncube加密的, 而我们使用的是zend guard,安装了zend optimizer后发现有冲突。。下面是网上看到的关于这两种加密工具的对比。一、概述PHP代码属于开源WEB代码,不需要编译,属于解释型语言。(即在WebServe...
分类:
Web程序 时间:
2015-02-03 10:44:42
阅读次数:
213
这个其实是从雷锋网的一个文章转过来的,http://www.leiphone.com/news/201412/2dddk3fdsk7cwev4.html?from=singlemessage&isappinstalled=1
棱镜门事件的主角爱德华·斯诺登又回来了!这次他披露一份2012年的美国国家安全局NSA的内部文件,表示在某些加密工具的保护下,NSA的追踪监控依旧是无从下手...
分类:
其他好文 时间:
2015-01-22 15:34:18
阅读次数:
284
shell加密工具shc的安装和使用1)工具说明shell脚本是可读写的,很有可能会泄露敏感信息,如用户名/密码/路径/IP等.同样在shell脚本运行时会也泄露敏感信息.shc是一个加密shell脚本的工具,它的作用是把shell脚本转换为一个可执行的二进制文件.这就很好的解决了上述问题.2)下载...
分类:
系统相关 时间:
2015-01-15 20:14:39
阅读次数:
215