forked from plusone/plusone-commons
封装 Hashers 类,方便使用 guava 封装的哈希工具类。
parent
5ba888a9f2
commit
1c4b0631f9
|
@ -0,0 +1,60 @@
|
||||||
|
package xyz.zhouxy.plusone.commons.security;
|
||||||
|
|
||||||
|
import com.google.common.hash.Hasher;
|
||||||
|
import com.google.common.hash.Hashing;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>
|
||||||
|
* 使用摘要算法推荐使用 guava 的 hash 包。
|
||||||
|
* </p>
|
||||||
|
* <p>
|
||||||
|
* 密码加密推荐使用 {@link org.mindrot.jbcrypt.BCrypt}。
|
||||||
|
* </p>
|
||||||
|
*/
|
||||||
|
public class Hashers {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 返回 guava 的 {@link Hasher}
|
||||||
|
*/
|
||||||
|
public static Hasher sha256() {
|
||||||
|
return Hashing.sha256().newHasher();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 返回 guava 的 {@link Hasher}
|
||||||
|
*/
|
||||||
|
public static Hasher sha384() {
|
||||||
|
return Hashing.sha384().newHasher();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 返回 guava 的 {@link Hasher}
|
||||||
|
*/
|
||||||
|
public static Hasher sha512() {
|
||||||
|
return Hashing.sha512().newHasher();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 返回 guava 的 {@link Hasher}
|
||||||
|
*
|
||||||
|
* @deprecated 该算法已弃用
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public static Hasher sha1() {
|
||||||
|
return Hashing.sha1().newHasher();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 返回 guava 的 {@link Hasher}
|
||||||
|
*
|
||||||
|
* @deprecated 该算法已弃用
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public static Hasher md5() {
|
||||||
|
return Hashing.md5().newHasher();
|
||||||
|
}
|
||||||
|
|
||||||
|
private Hashers() {
|
||||||
|
throw new IllegalStateException("Utility class");
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue