密码加密算法实现md5,base64

参考资料:https://www.imooc.com/learn/286
https://www.imooc.com/video/5828

md5版

用这个工具实现

<dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>18.0</version>
        </dependency>
package com.example.demo;

import java.nio.charset.Charset;

import com.google.common.hash.HashCode;
import com.google.common.hash.HashFunction;
import com.google.common.hash.Hashing;

public class md5 {

    //测试
    public static void main(String[] args) {

        String encryPassword = md5.encryPassword("wxwxwxwx");
        System.out.println(encryPassword);


    }


    private static final HashFunction FUNCTION = Hashing.md5();

    //加盐操作,使密码更安全
    private static final String SALT = "xueer.com";

    public static String encryPassword(String password) {

        HashCode hashCode = FUNCTION.hashString(password + SALT, Charset.forName("UTF-8"));

        return hashCode.toString();
    }

}

这里写图片描述

Base64版

用这个工具实现

<dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
        </dependency>
package com.bootdo.util;

import org.apache.commons.codec.binary.Base64;

public class Base64Util {

    public static void main(String[] args) {
        String base64 = Base64Util.getBase64("nihaoxueer");
        System.out.println(base64);

        //解密算法
        byte[] decode = new Base64().decode(base64);
        System.out.println(new String(decode));

    }

    public static String getBase64(String password) {

        // 加密算法
        byte[] encodeBase64 = Base64.encodeBase64(password.getBytes());
        String base64Password = new String(encodeBase64);

        return base64Password;

    }

}

这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值