首頁  >  文章  >  Java  >  Springboot基於BCrypt非對稱加密字串怎麼實現

Springboot基於BCrypt非對稱加密字串怎麼實現

PHPz
PHPz轉載
2023-05-22 08:25:051563瀏覽

1 : BCrypt簡介

在使用者模組中,需要對於使用者的密碼進行保護,通常都會進行加密。
我們通常會將密碼加密,然後存放在資料庫中,在使用者登入的時候,將其輸入的密碼加密然後與資料庫中存放的密文進行比較,以驗證使用者密碼是否正確。
目前,MD5和BCrypt比較流行。相對來說,BCrypt比MD5安全。

2 : 整合BCrypt加密及驗證

2.1 : 引入POM

<dependency>
    <groupId>org.mindrot</groupId>
    <artifactId>jbcrypt</artifactId>
    <version>0.3m</version>
</dependency>

2.2 : 工具類別

PassWordUtil.java

package com.utils;

import org.mindrot.jbcrypt.BCrypt;

public class PassWordUtil {

    /**
     * 密码加密
     */
    public static String encrypt(String source){
        String salt = BCrypt.gensalt();
        return BCrypt.hashpw(source, salt);
    }

    /**
     * 密码校验
     */
    public static boolean check(String source, String pwdCode){
        return BCrypt.checkpw(source, pwdCode);
    }

}

2.3 : 驗證

public static void main(String[] args) {
    String password = "abc123&%*";
    String crypt = encrypt(password);
    System.out.println(crypt);
    System.out.println("==========");
    System.out.println(check(password, crypt));
    System.out.println(check(password + "1", crypt));
}

Springboot基於BCrypt非對稱加密字串怎麼實現

#

以上是Springboot基於BCrypt非對稱加密字串怎麼實現的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除