1. 首页
  2. 安全技术
  3. 其他
  4. JAVA的BCrypt密码加密实现

JAVA的BCrypt密码加密实现

上传者: 2019-01-02 01:59:34上传 ZIP文件 15.76KB 热度 52次
示例: String hashed = BCrypt.hashpw("111111", BCrypt.gensalt()); System.out.println(hashed); //产生因子2,默认10 hashed = BCrypt.hashpw("111111", BCrypt.gensalt(12)); System.out.println(hashed); // Check that an unencrypted password matches one that has // previously been hashed if (BCrypt.checkpw("111111", hashed)) System.out.println("It matches"); else System.out.println("It does not match");
用户评论
明灵暗尘 2019-01-02 01:59:35

谢谢分享,很好的东西!

码姐姐匿名网友 2019-01-02 01:59:35

很好,可以用,学习到了