美文网首页
使用Bcrypt加密

使用Bcrypt加密

作者: Sunshine__7b8f | 来源:发表于2020-06-16 18:37 被阅读0次

使用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));
}

相关文章

网友评论

      本文标题:使用Bcrypt加密

      本文链接:https://www.haomeiwen.com/subject/znwrxktx.html