使用Bcrypt加密
pom
<dependency>
<groupId>de.svenkubiak</groupId>
<artifactId>jBCrypt</artifactId>
<version>0.4.1</version>
</dependency>
使用
public static void main(String[] args) {
//加密
String hashpw = BCrypt.hashpw("123456", BCrypt.gensalt());
//解密
System.out.println(BCrypt.checkpw("123456", hashpw));
}
网友评论