原文:http://www.open-open.com/code/view/1421764946296

import java.security.MessageDigest;
public class MD5 {
//公盐
private static final String PUBLIC_SALT = "demo" ;
//十六进制下数字到字符的映射数组
private final static String[] hexDigits = {"0", "1", "2", "3", "4",
"5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"}; /**
* 用户密码加密,盐值为 :私盐+公盐
* @param password 密码
* @param salt 私盐
* @return MD5加密字符串
*/
public static String encryptPassword(String password,String salt){
return encodeByMD5(PUBLIC_SALT+password+salt);
} /**
* md5加密算法
* @param originString
* @return
*/
private static String encodeByMD5(String originString){
if (originString != null){
try{
//创建具有指定算法名称的信息摘要
MessageDigest md = MessageDigest.getInstance("MD5");
//使用指定的字节数组对摘要进行最后更新,然后完成摘要计算
byte[] results = md.digest(originString.getBytes());
//将得到的字节数组变成字符串返回
String resultString = byteArrayToHexString(results);
return resultString.toUpperCase();
} catch(Exception ex){
ex.printStackTrace();
}
}
return null;
} /**
* 转换字节数组为十六进制字符串
* @param 字节数组
* @return 十六进制字符串
*/
private static String byteArrayToHexString(byte[] b){
StringBuffer resultSb = new StringBuffer();
for (int i = 0; i < b.length; i++){
resultSb.append(byteToHexString(b[i]));
}
return resultSb.toString();
} /** 将一个字节转化成十六进制形式的字符串 */
private static String byteToHexString(byte b){
int n = b;
if (n < 0)
n = 256 + n;
int d1 = n / 16;
int d2 = n % 16;
return hexDigits[d1] + hexDigits[d2];
}
}

最新文章

  1. java并发编程(十五)内存可见两种方式 加锁和volatile
  2. Android ViewPager 里有子ViewPager的事件冲突
  3. homework-07 C++ 11 能好怎
  4. js之正则表达式(上)
  5. g++ 编译和链接(转)
  6. Vim Vundle 插件管理器
  7. PHP之路——PHPStudy虚拟主机
  8. MYSQLI - mysqli
  9. Learning Cocos2d-x for WP8(1)——创建首个项目
  10. NVIDIA+关联2015写学校招收评论(嵌入式方向,上海)
  11. 无U盘安装Linux openSUSE(通过硬盘安装Linux)
  12. ASCII代码
  13. 2.sublime设置本地远程代码同步
  14. 我的IDEA配置
  15. 20164305 徐广皓 Exp5 MSF基础应用
  16. python基础提高演练(名片管理系统的开发)
  17. 设计模式---对象创建模式之原型模式(prototype)
  18. UWA 转载
  19. kendoUpload
  20. pyDay4

热门文章

  1. SAP CRM和Cloud for Customer中的Event handler(事件处理器)
  2. Android Studio -自定义LogCat的颜色
  3. iview upload 上传图片 不传服务器 转 base64
  4. python基础一 day2 数据类型
  5. JavaEE-08 JSTL和EL
  6. Java垃圾回收之老年代垃圾收集器
  7. [CF] 950B Intercepted Message
  8. Centos7安装tomcat(wget获取安装包)
  9. memcached 经典问题或现象
  10. CentOS6.8下安装Docker