当前位置: 首页 > 工具软件 > jBCrypt > 使用案例 >

jBCrypt来加密密码保证密码安全

吴飞语
2023-12-01

官网 http://www.mindrot.org/projects/jBCrypt/

 

使用方法

<dependency>
  <groupId>org.mindrot</groupId>
  <artifactId>jbcrypt</artifactId>
  <version>0.4</version>
</dependency>
String password="123asdzxc";
String hashed = BCrypt.hashpw(password, BCrypt.gensalt(12));
System.out.println(hashed);
if (BCrypt.checkpw(password, hashed)) {
	System.out.println("It matches");
} else {
	System.out.println("It does not match");
}

 

 类似资料: