All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tmsps.ne4spring.utils.MD5Util Maven / Gradle / Ivy

There is a newer version: 999.0.0.0
Show newest version
package com.tmsps.ne4spring.utils;

import org.apache.commons.codec.digest.DigestUtils;

/**
 * MD加密工具
 * 
 * @author zhangwei
 * 
 */
public class MD5Util {
	private static final String MD5_SALT = "NE_CORE";

	/**
	 *======================================================
	 * @author zhangwei [email protected] 
	 *------------------------------------------------------
	 * add salt
	 *======================================================
	 */
	public static String MD5(final String str, final String salt) {
		return DigestUtils.md5Hex(str.concat(salt));
	}

	public static String MD5(final String str) {
		return MD5(str, MD5_SALT);
	}
	
	/**
	 *  Normal md5 
	*/
	public static String MD5Normal(final String str){
		return DigestUtils.md5Hex(str);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy