摘要: import java.io.UnsupportedEncodingException; import java.security.SignatureException; import org.apache.commons.codec.digest.DigestUtils; /** * 修改日期:2012-08-17 * 说明: * 以下代码只是为了方便商户测试而提供的样例代码,商户可以根据... 阅读全文
posted @ 2016-06-30 16:15 joe立 阅读(210) 评论(0) 推荐(0) 编辑
摘要: import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; /** * Java常用的对密码加密的方法 对摘要信息进行加密编码 */ public class PasswordUtil { private final static String[] hexDigit... 阅读全文
posted @ 2016-06-30 16:13 joe立 阅读(260) 评论(0) 推荐(0) 编辑
摘要: public final class Base64 { static private final int BASELENGTH = 128; static private final int LOOKUPLENGTH = 64; static private final int TWENTYFOURBITGRO... 阅读全文
posted @ 2016-06-30 16:11 joe立 阅读(388) 评论(0) 推荐(0) 编辑
摘要: import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.InputStream; import java.security.KeyFactory; import java.security.PrivateKey; import java.security.PublicKey... 阅读全文
posted @ 2016-06-30 16:10 joe立 阅读(7035) 评论(0) 推荐(1) 编辑