帆软使用的第三方框架。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

12 lines
336 B

package org.apache.commons.codec.digest;
/**
* 只做兼容使用,新的实现
* 参考 com.fr.third.org.apache.commons.codec.digest.DigestUtils
*/
@Deprecated
public class DigestUtils {
public static String sha1Hex(String data) {
return com.fr.third.org.apache.commons.codec.digest.DigestUtils.sha1Hex(data);
}
}