Java 加密工具类

1. md5加密工具类

public class MD5Utils {

    private static final String hexDigIts[] = {"0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"};

    /**
     * MD5加密
     * @param origin 字符
     * @param charsetname 编码
     * @return
     */
    public static String MD5Encode(String origin, String charsetname){
        String resultString = null;
        try{
            resultString = new String(origin);
            MessageDigest md = MessageDigest.getInstance("MD5");
            if(null == charsetname || "".equals(charsetname)){
                resultString = byteArrayToHexString(md.digest(resultString.getBytes()));
            }else{
                resultString = byteArrayToHexString(md.digest(resultString.getBytes(charsetname)));
            }
        }catch (Exception e){
        }
        return resultString;
    }


    public static String byteArrayToHexString(byte b[]){
        StringBuffer resultSb = new StringBuffer();
        for(int i = 0; i < b.length; i++){
            resultSb.append(byteToHexString(b[i]));
        }
        return resultSb.toString();
    }

    public static String byteToHexString(byte b){
        int n = b;
        if(n < 0){
            n += 256;
        }
        int d1 = n / 16;
        int d2 = n % 16;
        return hexDigIts[d1] + hexDigIts[d2];
    }

}

2. base64加密工具类

public class Base64Util {

    // 字符串编码
    private static final String UTF_8 = "UTF-8";

    /**
     * 加密字符串
     * @param inputData
     * @return
     */
    public static String decodeData(String inputData) {
        try {
            if (null == inputData) {
                return null;
            }
            return new String(Base64.decodeBase64(inputData.getBytes(UTF_8)), UTF_8);
        } catch (UnsupportedEncodingException e) {
        }
        return null;
    }

    /**
     * 解密加密后的字符串
     * @param inputData
     * @return
     */
    public static String encodeData(String inputData) {
        try {
            if (null == inputData) {
                return null;
            }
            return new String(Base64.encodeBase64(inputData.getBytes(UTF_8)), UTF_8);
        } catch (UnsupportedEncodingException e) {
        }
        return null;
    }
}

3. Bcrypt工具类

public class BcryptCipher {
  // generate salt seed
  private static final int SALT_SEED = 12;
  // the head fo salt
  private static final String SALT_STARTSWITH = "$2a$12";
  
  public static final String SALT_KEY = "salt";
  
  public static final String CIPHER_KEY = "cipher";
  
  /**
   * Bcrypt encryption algorithm method
   * @param encryptSource
   * need to encrypt the string
   * @return Map , two values in Map , salt and cipher
   */
  public static Map<String, String> Bcrypt(final String encryptSource) {
    String salt = BCrypt.gensalt(SALT_SEED);
    Map<String, String> bcryptResult = Bcrypt(salt, encryptSource);
    return bcryptResult;
  }
  /**
   *
   * @param salt encrypt salt, Must conform to the rules
   * @param encryptSource
   * @return
   */
  public static Map<String, String> Bcrypt(final String salt, final String encryptSource) {
    if (StringUtils.isBlank(encryptSource)) {
      throw new RuntimeException("Bcrypt encrypt input params can not be empty");
    }
    
    if (StringUtils.isBlank(salt) || salt.length() != 29) {
      throw new RuntimeException("Salt can't be empty and length must be to 29");
    }
    if (!salt.startsWith(SALT_STARTSWITH)) {
      throw new RuntimeException("Invalid salt version, salt version is $2a$12");
    }
    
    String cipher = BCrypt.hashpw(encryptSource, salt);
    Map<String, String> bcryptResult = new HashMap<String, String>();
    bcryptResult.put(SALT_KEY, salt);
    bcryptResult.put(CIPHER_KEY, cipher);
    return bcryptResult;
  }
}

参考博文地址:https://my.oschina.net/u/4139951/blog/3077236

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值