zoukankan      html  css  js  c++  java
  • (转)Java DES 与Base64

     原文地址http://blog.csdn.net/tomatozq/article/details/20773559

    1,DES

        /** 
                 * 解密 
                 * @param message 
                 * @param key 
                 * @return 
                 * @throws Exception 
                 */  
                public static String decrypt(String message,String encoding) throws Exception {  
          
                    byte[] bytesrc = convertHexString(message);  
                    Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");  
                    DESKeySpec desKeySpec = new DESKeySpec(key.getBytes(encoding));  
                    SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");  
                    SecretKey secretKey = keyFactory.generateSecret(desKeySpec);  
                    IvParameterSpec iv = new IvParameterSpec(key.getBytes(encoding));  
          
                    cipher.init(Cipher.DECRYPT_MODE, secretKey, iv);  
          
                    byte[] retByte = cipher.doFinal(bytesrc);  
                    return new String(retByte,encoding);  
                }  
          
                /** 
                 * 加密 
                 * @param message 
                 * @param key 
                 * @return 
                 * @throws Exception 
                 */  
                public static String encrypt(String message,String encoding) throws Exception {  
                    Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");  
          
                    DESKeySpec desKeySpec = new DESKeySpec(key.getBytes(encoding));  
          
                    SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");  
                    SecretKey secretKey = keyFactory.generateSecret(desKeySpec);  
                    IvParameterSpec iv = new IvParameterSpec(key.getBytes(encoding));  
                    cipher.init(Cipher.ENCRYPT_MODE, secretKey, iv);  
          
                    byte[] buf = cipher.doFinal(message.getBytes(encoding));  
                      
                    String a = toHexString(buf).toUpperCase();  
                      
                    return a;  
                }  
          
                /** 
                 * 字符串转换为16进制数组 
                 * @param ss 
                 * @return 
                 */  
                public static byte[] convertHexString(String ss) {  
                    byte digest[] = new byte[ss.length() / 2];  
                    for (int i = 0; i < digest.length; i++) {  
                        String byteString = ss.substring(2 * i, 2 * i + 2);  
                        int byteValue = Integer.parseInt(byteString, 16);  
                        digest[i] = (byte) byteValue;  
                    }  
          
                    return digest;  
                }  
                  
                /** 
                 * 16进制数组转换为字符串 
                 * @param b 
                 * @return 
                 */  
                public static String toHexString(byte b[]) {  
                    StringBuffer hexString = new StringBuffer();  
                    for (int i = 0; i < b.length; i++) {  
                        String plainText = Integer.toHexString(0xff & b[i]);  
                        if (plainText.length() < 2)  
                            plainText = "0" + plainText;  
                        hexString.append(plainText);  
                    }  
          
                    return hexString.toString();  
                }  
    

    2,Base64

        byte[] enc = Base64.encode(encText.getBytes(encoding), Base64.DEFAULT);  
        byte[] bytesrc = Base64.decode(encText.getBytes(encoding), Base64.DEFAULT);  
    

      

  • 相关阅读:
    CloudFlare Workers 反代任意网站和挂载单页代码
    排查Linux服务器是否有被入侵方法总结
    修复Windows time时间服务无法自动启动的问题
    如何删除windows服务
    linux之NetHogs与nload流量监控
    常用IPV4 DNS服务器与常用IPV6 DNS服务器
    Win10系统如何删除网络及修改网络名称
    window修改远程桌面RDP方法
    单击鼠标右键菜单显示怎么在左边?
    传统IDC机房部署网站
  • 原文地址:https://www.cnblogs.com/hhhh2010/p/4088255.html
Copyright © 2011-2022 走看看