zoukankan      html  css  js  c++  java
  • EncryptUtils

    package me.zhengjie.core.utils;
    
    import org.springframework.util.DigestUtils;
    import javax.crypto.Cipher;
    import javax.crypto.SecretKey;
    import javax.crypto.SecretKeyFactory;
    import javax.crypto.spec.DESKeySpec;
    import javax.crypto.spec.IvParameterSpec;
    
    /**
     * 加密
     * @author jie
     * @date 2018-11-23
     */
    public class EncryptUtils {
    
        private static String strKey = "Passw0rd", strParam = "Passw0rd";
    
        /**
         * 对称加密
         * @param source
         * @return
         * @throws Exception
         */
        public static String desEncrypt(String source) throws Exception {
            if (source == null || source.length() == 0){
                return null;
            }
            Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
            DESKeySpec desKeySpec = new DESKeySpec(strKey.getBytes("UTF-8"));
            SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
            SecretKey secretKey = keyFactory.generateSecret(desKeySpec);
            IvParameterSpec iv = new IvParameterSpec(strParam.getBytes("UTF-8"));
            cipher.init(Cipher.ENCRYPT_MODE, secretKey, iv);
            return byte2hex(
                    cipher.doFinal(source.getBytes("UTF-8"))).toUpperCase();
        }
    
        public static String byte2hex(byte[] inStr) {
            String stmp;
            StringBuffer out = new StringBuffer(inStr.length * 2);
            for (int n = 0; n < inStr.length; n++) {
                stmp = Integer.toHexString(inStr[n] & 0xFF);
                if (stmp.length() == 1) {
                    // 如果是0至F的单位字符串,则添加0
                    out.append("0" + stmp);
                } else {
                    out.append(stmp);
                }
            }
            return out.toString();
        }
    
    
        public static byte[] hex2byte(byte[] b) {
            if ((b.length % 2) != 0){
                throw new IllegalArgumentException("长度不是偶数");
            }
            byte[] b2 = new byte[b.length / 2];
            for (int n = 0; n < b.length; n += 2) {
                String item = new String(b, n, 2);
                b2[n / 2] = (byte) Integer.parseInt(item, 16);
            }
            return b2;
        }
    
        /**
         * 对称解密
         * @param source
         * @return
         * @throws Exception
         */
        public static String desDecrypt(String source) throws Exception {
            if (source == null || source.length() == 0){
                return null;
            }
            byte[] src = hex2byte(source.getBytes());
            Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
            DESKeySpec desKeySpec = new DESKeySpec(strKey.getBytes("UTF-8"));
            SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
            SecretKey secretKey = keyFactory.generateSecret(desKeySpec);
            IvParameterSpec iv = new IvParameterSpec(strParam.getBytes("UTF-8"));
            cipher.init(Cipher.DECRYPT_MODE, secretKey, iv);
            byte[] retByte = cipher.doFinal(src);
            return new String(retByte);
        }
    
        /**
         * 密码加密
         * @param password
         * @return
         */
        public static String encryptPassword(String password){
            return  DigestUtils.md5DigestAsHex(password.getBytes());
        }
    
        public static void main(String[] args) {
            System.out.println(encryptPassword("e10adc3949ba59abbe56e057f20f883e"));
        }
    }
    package me.zhengjie.core.utils;
    
    import org.springframework.util.DigestUtils;
    import javax.crypto.Cipher;
    import javax.crypto.SecretKey;
    import javax.crypto.SecretKeyFactory;
    import javax.crypto.spec.DESKeySpec;
    import javax.crypto.spec.IvParameterSpec;
    
    /**
     * 加密
     * @author jie
     * @date 2018-11-23
     */
    public class EncryptUtils {
    
        private static String strKey = "Passw0rd", strParam = "Passw0rd";
    
        /**
         * 对称加密
         * @param source
         * @return
         * @throws Exception
         */
        public static String desEncrypt(String source) throws Exception {
            if (source == null || source.length() == 0){
                return null;
            }
            Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
            DESKeySpec desKeySpec = new DESKeySpec(strKey.getBytes("UTF-8"));
            SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
            SecretKey secretKey = keyFactory.generateSecret(desKeySpec);
            IvParameterSpec iv = new IvParameterSpec(strParam.getBytes("UTF-8"));
            cipher.init(Cipher.ENCRYPT_MODE, secretKey, iv);
            return byte2hex(
                    cipher.doFinal(source.getBytes("UTF-8"))).toUpperCase();
        }
    
        public static String byte2hex(byte[] inStr) {
            String stmp;
            StringBuffer out = new StringBuffer(inStr.length * 2);
            for (int n = 0; n < inStr.length; n++) {
                stmp = Integer.toHexString(inStr[n] & 0xFF);
                if (stmp.length() == 1) {
                    // 如果是0至F的单位字符串,则添加0
                    out.append("0" + stmp);
                } else {
                    out.append(stmp);
                }
            }
            return out.toString();
        }
    
    
        public static byte[] hex2byte(byte[] b) {
            if ((b.length % 2) != 0){
                throw new IllegalArgumentException("长度不是偶数");
            }
            byte[] b2 = new byte[b.length / 2];
            for (int n = 0; n < b.length; n += 2) {
                String item = new String(b, n, 2);
                b2[n / 2] = (byte) Integer.parseInt(item, 16);
            }
            return b2;
        }
    
        /**
         * 对称解密
         * @param source
         * @return
         * @throws Exception
         */
        public static String desDecrypt(String source) throws Exception {
            if (source == null || source.length() == 0){
                return null;
            }
            byte[] src = hex2byte(source.getBytes());
            Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
            DESKeySpec desKeySpec = new DESKeySpec(strKey.getBytes("UTF-8"));
            SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
            SecretKey secretKey = keyFactory.generateSecret(desKeySpec);
            IvParameterSpec iv = new IvParameterSpec(strParam.getBytes("UTF-8"));
            cipher.init(Cipher.DECRYPT_MODE, secretKey, iv);
            byte[] retByte = cipher.doFinal(src);
            return new String(retByte);
        }
    
        /**
         * 密码加密
         * @param password
         * @return
         */
        public static String encryptPassword(String password){
            return  DigestUtils.md5DigestAsHex(password.getBytes());
        }
    
        public static void main(String[] args) {
            System.out.println(encryptPassword("e10adc3949ba59abbe56e057f20f883e"));
        }
    }
  • 相关阅读:
    字符串格式化及操作操作
    操作文件
    python学习笔记(数据类型)
    抓包工具之—charles碎言碎语
    jmeter之关联操作
    eclipse插件Maven添加依赖查询无结果的解决方法(Select Dependency doesn't work)
    java使用this关键字调用本类重载构造器
    无法安装Windows Live“OnCatalogResult:0x80190194”错误的解决方法
    JavaScript笔试必备语句
    VS2015详细安装步骤
  • 原文地址:https://www.cnblogs.com/tonggc1668/p/11216940.html
Copyright © 2011-2022 走看看