JAVA與.NET DES加密解密

來源:互聯網
上載者:User

前幾天做了個項目需要在兩個系統間採用DES加密,一個系統為JAVA開發的,另外一個.Net開發的

在網上找了很多寫法但加密出的資料兩個系統都無法匹配,

在做了小修改以後終於可以用了,已經測試過

JAVA版本

import javax.crypto.Cipher;  
import javax.crypto.SecretKey;  
import javax.crypto.SecretKeyFactory;  
import javax.crypto.spec.DESKeySpec;  
import javax.crypto.spec.IvParameterSpec;  
 
 
public class Des {  
    private byte[] desKey;  
 
      
    //解密資料  
    public static String decrypt(String message,String key) throws Exception {  
           
            byte[] bytesrc =convertHexString(message);     
            Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");      
            DESKeySpec desKeySpec = new DESKeySpec(key.getBytes("UTF-8"));     
            SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");     
            SecretKey secretKey = keyFactory.generateSecret(desKeySpec);     
            IvParameterSpec iv = new IvParameterSpec(key.getBytes("UTF-8"));  
                  
            cipher.init(Cipher.DECRYPT_MODE, secretKey, iv);        
            
            byte[] retByte = cipher.doFinal(bytesrc);       
            return new String(retByte);   
    }  
 
    public static byte[] encrypt(String message, String key)  
            throws Exception {  
        Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");  
 
        DESKeySpec desKeySpec = new DESKeySpec(key.getBytes("UTF-8"));  
 
        SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");  
        SecretKey secretKey = keyFactory.generateSecret(desKeySpec);  
        IvParameterSpec iv = new IvParameterSpec(key.getBytes("UTF-8"));  
        cipher.init(Cipher.ENCRYPT_MODE, secretKey, iv);  
 
        return cipher.doFinal(message.getBytes("UTF-8"));  
    }  
      
    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;   
    }   
 
 
    public static void main(String[] args) throws Exception {  
        String key = "12345678";  
        String value="test1234 ";  
        String jiami=java.net.URLEncoder.encode(value, "utf-8").toLowerCase();  
          
        System.out.println("加密資料:"+jiami);  
        String a=toHexString(encrypt(jiami, key)).toUpperCase();  
          
      
        System.out.println("加密後的資料為:"+a);  
        String b=java.net.URLDecoder.decode(decrypt(a,key), "utf-8") ;  
        System.out.println("解密後的資料:"+b);  
 
    }  
 
      
    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();  
    }  
 

 

.NET版本

using System;  
using System.Data;  
using System.Configuration;  
using System.Web;  
using System.Web.Security;  
using System.Web.UI;  
using System.Web.UI.WebControls;  
using System.Web.UI.WebControls.WebParts;  
using System.Web.UI.HtmlControls;  
using System.Data.SqlClient;  
using System.Security.Cryptography;  
using System.IO;  
using System.Text;  
public class TestDes{  
    //cookies加密金鑰  
    public static string DES_Key = "12345678"; 
 
    #region DESEnCode DES加密  
    public static string DESEnCode(string pToEncrypt, string sKey)  
    {  
        pToEncrypt = HttpContext.Current.Server.UrlEncode(pToEncrypt);  
        DESCryptoServiceProvider des = new DESCryptoServiceProvider();  
        byte[] inputByteArray = Encoding.GetEncoding("UTF-8").GetBytes(pToEncrypt);   
  
         
        des.Key = ASCIIEncoding.ASCII.GetBytes(sKey);  
        des.IV = ASCIIEncoding.ASCII.GetBytes(sKey);  
        MemoryStream ms = new MemoryStream();  
        CryptoStream cs = new CryptoStream(ms, des.CreateEncryptor(), CryptoStreamMode.Write);  
 
        cs.Write(inputByteArray, 0, inputByteArray.Length);  
        cs.FlushFinalBlock();  
 
        StringBuilder ret = new StringBuilder();  
        foreach (byte b in ms.ToArray())  
        {  
            ret.AppendFormat("{0:X2}", b);  
        }  
        ret.ToString();  
        return ret.ToString();  
    } 
    #endregion 
 
    #region DESDeCode DES解密  
    public static string DESDeCode(string pToDecrypt, string sKey)  
    {  
        //    HttpContext.Current.Response.Write(pToDecrypt + "<br>" + sKey);  
        //    HttpContext.Current.Response.End();  
        DESCryptoServiceProvider des = new DESCryptoServiceProvider();  
 
        byte[] inputByteArray = new byte[pToDecrypt.Length / 2];  
        for (int x = 0; x < pToDecrypt.Length / 2; x++)  
        {  
            int i = (Convert.ToInt32(pToDecrypt.Substring(x * 2, 2), 16));  
            inputByteArray[x] = (byte)i;  
        }  
 
        des.Key = ASCIIEncoding.ASCII.GetBytes(sKey);  
        des.IV = ASCIIEncoding.ASCII.GetBytes(sKey);  
        MemoryStream ms = new MemoryStream();  
        CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(), CryptoStreamMode.Write);  
        cs.Write(inputByteArray, 0, inputByteArray.Length);  
        cs.FlushFinalBlock();  
 
        StringBuilder ret = new StringBuilder();  
 
        return HttpContext.Current.Server.UrlDecode(System.Text.Encoding.Default.GetString(ms.ToArray()));  
    } 
    #endregion  
 
      public TestDes()  
    {  
        //  
        // TODO: 在此處添加建構函式邏輯  
        //  
    }  

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.