zoukankan      html  css  js  c++  java
  • java SHA256加密工具类

    import java.io.UnsupportedEncodingException;
    import java.security.MessageDigest;
    import java.security.NoSuchAlgorithmException;

    /**
    * SHA256 摘要算法工具类
    * @author Administrator
    *
    */
    public class SHA256Util {

      /**
      * 利用java原生的摘要实现SHA256加密
      * @param str 加密后的报文
      * @return
      */
      public static String getSHA256StrJava(String str){
        MessageDigest messageDigest;
        String encodeStr = "";
        try {
          messageDigest = MessageDigest.getInstance("SHA-256");
          messageDigest.update(str.getBytes("UTF-8"));
          encodeStr = byte2Hex(messageDigest.digest());
        } catch (NoSuchAlgorithmException e) {
          e.printStackTrace();
        } catch (UnsupportedEncodingException e) {
          e.printStackTrace();
        }
        return encodeStr;
      }

      /**
      * 将byte转为16进制
      * @param bytes
      * @return
      */
      private static String byte2Hex(byte[] bytes){
        StringBuffer stringBuffer = new StringBuffer();
        String temp = null;
        for (int i=0;i<bytes.length;i++){
          temp = Integer.toHexString(bytes[i] & 0xFF);
          if (temp.length()==1){
            //1得到一位的进行补0操作
            stringBuffer.append("0");
          }
          stringBuffer.append(temp);
        }
        return stringBuffer.toString();
      }

    }

    文末小福利免费视频资源网站(搜索猴)www.sousuohou.com
    电影公众号https://m.veikee.cn/

     

  • 相关阅读:
    调度器2—cat /proc/<pid>/sched内容分析
    调度器1—相关接口和命令行工具
    Java中的String类
    Java中的数组
    代码访问使用Let's Encrypt证书的网站提示certificate has expired的解决方法
    Linux环境Clion使用Protobuf
    PyTorch Dataloader读取时如何在进程之间传输数据
    6 安装Grafana 展示promethues数据
    5 Prometheus relabel配置
    4 PromQL
  • 原文地址:https://www.cnblogs.com/vicF/p/7461804.html
Copyright © 2011-2022 走看看