3DESC加密算法

摘要:
3DESC请求参数和响应参数全采用3des加密规则,由于我是用.NET对接的,而第三方是Java开发的,所以两种程序之间采用的算法有一点差异,java的3des加密采用的是"DESede/CBC/PKCS5Padding"规则,所以对应的C#规则是"PaddingMode.PKCS7和CipherMode.CBC",使用CBC模式的话在C#下必须传入加密向量IV(固定长度8位),默认"123456

3DESC

请求参数和响应参数全采用3des加密规则,由于我是用.NET对接的,而第三方是Java开发的,所以两种程序之间采用的算法有一点差异,java的3des加密采用的是"DESede/CBC/PKCS5Padding"规则,所以对应的C#规则是"PaddingMode.PKCS7和CipherMode.CBC",使用CBC模式的话在C#下必须传入加密向量IV(固定长度8位),默认"12345678",加密密钥和IV双方约定好即可,如果是ECB编码模式,那么就无须使用加密向量。

这里的KEY采用Base64编码,便用分发,因为Java的Byte范围为-128至127,c#的Byte范围是0-255
核心是确定Mode和Padding,关于这两个的意思可以搜索3DES算法相关文章
一个是C#采用CBC Mode,PKCS7 Padding,Java采用CBC Mode,PKCS5Padding Padding,
另一个是C#采用ECB Mode,PKCS7 Padding,Java采用ECB Mode,PKCS5Padding Padding,
Java的ECB模式不需要IV

对字符加密时,双方采用的都是UTF-8编码

DesIv: 3FEB40B6
DesKey: 3FD5F52BEA57D4B03FE9CF73

3DESC加密算法第1张3DESC加密算法第2张
/// <summary> 
///DES3加密解密 
/// </summary> 
public classDes3 
{ 
    #region CBC模式** 
    /// <summary> 
    ///DES3 CBC模式加密 
    /// </summary> 
    /// <param name="key">密钥</param> 
    /// <param name="iv">IV</param> 
    /// <param name="data">明文的byte数组</param> 
    /// <returns>密文的byte数组</returns> 
    public static byte[] Des3EncodeCBC( byte[] key, byte[] iv, byte[] data ) 
    { 
        //复制于MSDN 
        try
        { 
            //Create a MemoryStream. 
            MemoryStream mStream = newMemoryStream(); 
            TripleDESCryptoServiceProvider tdsp = newTripleDESCryptoServiceProvider(); 
            tdsp.Mode = CipherMode.CBC;             //默认值 
            tdsp.Padding = PaddingMode.PKCS7;       //默认值 
            //Create a CryptoStream using the MemoryStream  
            //and the passed key and initialization vector (IV). 
            CryptoStream cStream = newCryptoStream( mStream, 
                tdsp.CreateEncryptor( key, iv ), 
                CryptoStreamMode.Write ); 
            //Write the byte array to the crypto stream and flush it. 
            cStream.Write( data, 0, data.Length ); 
            cStream.FlushFinalBlock(); 
            //Get an array of bytes from the  
            //MemoryStream that holds the  
            //encrypted data. 
            byte[] ret =mStream.ToArray(); 
            //Close the streams. 
cStream.Close(); 
            mStream.Close(); 
            //Return the encrypted buffer. 
            returnret; 
        } 
        catch( CryptographicException e ) 
        { 
            Console.WriteLine( "A Cryptographic error occurred: {0}", e.Message ); 
            return null; 
        } 
    } 
    /// <summary> 
    ///DES3 CBC模式解密 
    /// </summary> 
    /// <param name="key">密钥</param> 
    /// <param name="iv">IV</param> 
    /// <param name="data">密文的byte数组</param> 
    /// <returns>明文的byte数组</returns> 
    public static byte[] Des3DecodeCBC( byte[] key, byte[] iv, byte[] data ) 
    { 
        try
        { 
            //Create a new MemoryStream using the passed  
            //array of encrypted data. 
            MemoryStream msDecrypt = newMemoryStream( data ); 
            TripleDESCryptoServiceProvider tdsp = newTripleDESCryptoServiceProvider(); 
            tdsp.Mode =CipherMode.CBC; 
            tdsp.Padding =PaddingMode.PKCS7; 
            //Create a CryptoStream using the MemoryStream  
            //and the passed key and initialization vector (IV). 
            CryptoStream csDecrypt = newCryptoStream( msDecrypt, 
                tdsp.CreateDecryptor( key, iv ), 
                CryptoStreamMode.Read ); 
            //Create buffer to hold the decrypted data. 
            byte[] fromEncrypt = new byte[data.Length]; 
            //Read the decrypted data out of the crypto stream 
            //and place it into the temporary buffer. 
            csDecrypt.Read( fromEncrypt, 0, fromEncrypt.Length ); 
            //Convert the buffer into a string and return it. 
            returnfromEncrypt; 
        } 
        catch( CryptographicException e ) 
        { 
            Console.WriteLine( "A Cryptographic error occurred: {0}", e.Message ); 
            return null; 
        } 
    } 
    #endregion 
    #region ECB模式 
    /// <summary> 
    ///DES3 ECB模式加密 
    /// </summary> 
    /// <param name="key">密钥</param> 
    /// <param name="iv">IV(当模式为ECB时,IV无用)</param> 
    /// <param name="str">明文的byte数组</param> 
    /// <returns>密文的byte数组</returns> 
    public static byte[] Des3EncodeECB( byte[] key, byte[] iv, byte[] data ) 
    { 
        try
        { 
            //Create a MemoryStream. 
            MemoryStream mStream = newMemoryStream(); 
            TripleDESCryptoServiceProvider tdsp = newTripleDESCryptoServiceProvider(); 
            tdsp.Mode =CipherMode.ECB; 
            tdsp.Padding =PaddingMode.PKCS7; 
            //Create a CryptoStream using the MemoryStream  
            //and the passed key and initialization vector (IV). 
            CryptoStream cStream = newCryptoStream( mStream, 
                tdsp.CreateEncryptor( key, iv ), 
                CryptoStreamMode.Write ); 
            //Write the byte array to the crypto stream and flush it. 
            cStream.Write( data, 0, data.Length ); 
            cStream.FlushFinalBlock(); 
            //Get an array of bytes from the  
            //MemoryStream that holds the  
            //encrypted data. 
            byte[] ret =mStream.ToArray(); 
            //Close the streams. 
cStream.Close(); 
            mStream.Close(); 
            //Return the encrypted buffer. 
            returnret; 
        } 
        catch( CryptographicException e ) 
        { 
            Console.WriteLine( "A Cryptographic error occurred: {0}", e.Message ); 
            return null; 
        } 
    } 
    /// <summary> 
    ///DES3 ECB模式解密 
    /// </summary> 
    /// <param name="key">密钥</param> 
    /// <param name="iv">IV(当模式为ECB时,IV无用)</param> 
    /// <param name="str">密文的byte数组</param> 
    /// <returns>明文的byte数组</returns> 
    public static byte[] Des3DecodeECB( byte[] key, byte[] iv, byte[] data ) 
    { 
        try
        { 
            //Create a new MemoryStream using the passed  
            //array of encrypted data. 
            MemoryStream msDecrypt = newMemoryStream( data ); 
            TripleDESCryptoServiceProvider tdsp = newTripleDESCryptoServiceProvider(); 
            tdsp.Mode =CipherMode.ECB; 
            tdsp.Padding =PaddingMode.PKCS7; 
            //Create a CryptoStream using the MemoryStream  
            //and the passed key and initialization vector (IV). 
            CryptoStream csDecrypt = newCryptoStream( msDecrypt, 
                tdsp.CreateDecryptor( key, iv ), 
                CryptoStreamMode.Read ); 
            //Create buffer to hold the decrypted data. 
            byte[] fromEncrypt = new byte[data.Length]; 
            //Read the decrypted data out of the crypto stream 
            //and place it into the temporary buffer. 
            csDecrypt.Read( fromEncrypt, 0, fromEncrypt.Length ); 
            //Convert the buffer into a string and return it. 
            returnfromEncrypt; 
        } 
        catch( CryptographicException e ) 
        { 
            Console.WriteLine( "A Cryptographic error occurred: {0}", e.Message ); 
            return null; 
        } 
    } 
    #endregion 
    /// <summary> 
    ///<a href="http://lib.csdn.net/base/softwaretest"   title="软件测试知识库" target='_blank' style='color:#df3434; font-weight:bold;'>测试</a> 
    /// </summary> 
    public static voidTest() 
    { 
        System.Text.Encoding utf8 =System.Text.Encoding.UTF8; 
        //key为abcdefghijklmnopqrstuvwx的Base64编码 
        byte[] key = Convert.FromBase64String( "YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4"); 
        byte[] iv = new byte[] { 1, 2, 3, 4, 5, 6, 7, 8 };      //当模式为ECB时,IV无用 
        byte[] data = utf8.GetBytes( "中国ABCabc123"); 
        System.Console.WriteLine( "ECB模式:"); 
        byte[] str1 =Des3.Des3EncodeECB( key, iv, data ); 
        byte[] str2 =Des3.Des3DecodeECB( key, iv, str1 ); 
        System.Console.WriteLine( Convert.ToBase64String( str1 ) ); 
        System.Console.WriteLine( System.Text.Encoding.UTF8.GetString( str2 ) ); 
        System.Console.WriteLine(); 
        System.Console.WriteLine( "CBC模式:"); 
        byte[] str3 =Des3.Des3EncodeCBC( key, iv, data ); 
        byte[] str4 =Des3.Des3DecodeCBC( key, iv, str3 ); 
        System.Console.WriteLine( Convert.ToBase64String( str3 ) ); 
        System.Console.WriteLine( utf8.GetString( str4 ) ); 
        System.Console.WriteLine(); 
    } 
} 
C# 3DESC
3DESC加密算法第1张3DESC加密算法第4张
package com.mes.util;
import java.security.Key;
import java.util.HashMap;
import java.util.Map;
import javax.crypto.Cipher;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.DESedeKeySpec;
import javax.crypto.spec.IvParameterSpec;
import sun.misc.BASE64Decoder;
@SuppressWarnings("restriction")
public classThreeDESCBC {
    /**
     *
     * @Description ECB加密,不要IV
     * @param key 密钥
     * @param data 明文
     * @return Base64编码的密文
     * @throws Exception
     * @author Shindo  
     * @date 2016年11月15日 下午4:42:56
     */
    public static byte[] des3EncodeECB(byte[] key, byte[] data) throws Exception {
        Key deskey = null;
        DESedeKeySpec spec = newDESedeKeySpec(key);
        SecretKeyFactory keyfactory = SecretKeyFactory.getInstance("desede");
        deskey =keyfactory.generateSecret(spec);
        Cipher cipher = Cipher.getInstance("desede" + "/ECB/PKCS5Padding");
        cipher.init(Cipher.ENCRYPT_MODE, deskey);
        byte[] bOut =cipher.doFinal(data);
        returnbOut;
    }
    /**
     *
     * @Description ECB解密,不要IV
     * @param key 密钥
     * @param data Base64编码的密文
     * @return 明文
     * @throws Exception
     * @author Shindo  
     * @date 2016年11月15日 下午5:01:23
     */
    public static byte[] ees3DecodeECB(byte[] key, byte[] data) throws Exception {
        Key deskey = null;
        DESedeKeySpec spec = newDESedeKeySpec(key);
        SecretKeyFactory keyfactory = SecretKeyFactory.getInstance("desede");
        deskey =keyfactory.generateSecret(spec);
        Cipher cipher = Cipher.getInstance("desede" + "/ECB/PKCS5Padding");
        cipher.init(Cipher.DECRYPT_MODE, deskey);
        byte[] bOut =cipher.doFinal(data);
        returnbOut;
    }
    /**
     *
     * @Description CBC加密
     * @param key 密钥
     * @param keyiv IV
     * @param data 明文
     * @return Base64编码的密文
     * @throws Exception
     * @author Shindo  
     * @date 2016年11月15日 下午5:26:46
     */
    public static byte[] des3EncodeCBC(byte[] key, byte[] keyiv, byte[] data) throws Exception {
        Key deskey = null;
        DESedeKeySpec spec = newDESedeKeySpec(key);
        SecretKeyFactory keyfactory = SecretKeyFactory.getInstance("desede");
        deskey =keyfactory.generateSecret(spec);
        Cipher cipher = Cipher.getInstance("desede" + "/CBC/PKCS5Padding");
        IvParameterSpec ips = newIvParameterSpec(keyiv);
        cipher.init(Cipher.ENCRYPT_MODE, deskey, ips);
        byte[] bOut =cipher.doFinal(data);
        returnbOut;
    }
    /**
     *
     * @Description CBC解密
     * @param key 密钥
     * @param keyiv IV
     * @param data Base64编码的密文
     * @return 明文
     * @throws Exception
     * @author Shindo  
     * @date 2016年11月16日 上午10:13:49
     */
    public static byte[] des3DecodeCBC(byte[] key, byte[] keyiv, byte[] data) throws Exception {
        Key deskey = null;
        DESedeKeySpec spec = newDESedeKeySpec(key);
        SecretKeyFactory keyfactory = SecretKeyFactory.getInstance("desede");
        deskey =keyfactory.generateSecret(spec);
        Cipher cipher = Cipher.getInstance("desede" + "/CBC/PKCS5Padding");
        IvParameterSpec ips = newIvParameterSpec(keyiv);
        cipher.init(Cipher.DECRYPT_MODE, deskey, ips);
        byte[] bOut =cipher.doFinal(data);
        returnbOut;
    }
    /**
     *
     * @Description 浦发所属渠道入口3DES解密方法
     * @param paras 加密参数
     * @param key 3DES密钥
     * @return 解密明文
     * @author Shindo  
     * @throws Exception
     * @date 2016年11月22日 上午9:34:07
     */
    public Map<String, String> parasDecryptCBC(Map<String, String>paras, String key) throws Exception {
        Map<String, String> map = new HashMap<String, String>();
        try{
            byte[] pf_3des_key = newBASE64Decoder().decodeBuffer(key);
            byte[] keyiv = { 1, 2, 3, 4, 5, 6, 7, 8 };//3DES解密IV值
            String telePhone = paras.get("telePhone");//浦发新接口电话不加密
            byte[] card = new BASE64Decoder().decodeBuffer(ControllerUtils.URLDecode(paras.get("cardNo")));
            byte[] cert = new BASE64Decoder().decodeBuffer(ControllerUtils.URLDecode(paras.get("certNo")));
            String cardNo = new String(des3DecodeCBC(pf_3des_key, keyiv, card), "UTF-8");//卡号
            String certNo = new String(des3DecodeCBC(pf_3des_key, keyiv, cert), "UTF-8");//证件号码
            map.put("telePhone", telePhone);
            map.put("cardNo", cardNo);
            map.put("certNo", certNo);
        } catch(Exception e) {
            throw new Exception("浦发所属渠道入口参数3DES CBC解密失败!");
        }
        returnmap;
    }
    /**
     *
     * @Description 调试方法
     * @param args
     * @throws Exception
     * @author Shindo  
     * @date 2016年11月22日 上午9:28:22
     */
    public static voidmain(String[] args) throws Exception {
        byte[] key = new BASE64Decoder().decodeBuffer("YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4");
        byte[] keyiv = { 1, 2, 3, 4, 5, 6, 7, 8};
//byte[] data = "420106198203279258".getBytes("UTF-8");
        /*System.out.println("ECB加密解密");
        byte[] str3 = des3EncodeECB(key, data);
        byte[] str4 = ees3DecodeECB(key, str3);
        System.out.println(new BASE64Encoder().encode(str3));
        System.out.println(new String(str4, "UTF-8"));
        System.out.println();*/
        /*System.out.println("CBC加密解密");
        byte[] str5 = des3EncodeCBC(key, keyiv, data);
        byte[] str6 = des3DecodeCBC(key, keyiv, str5);
        System.out.println(new BASE64Encoder().encode(str5));
        System.out.println(new String(str6, "UTF-8"));*/
        String str7 = "uHrew7Thp2taL2NJpSJhF2mdFMP7BZ1W";
        byte[] str8 = newBASE64Decoder().decodeBuffer(str7);
        byte[] str9 =des3DecodeCBC(key, keyiv, str8);
        System.out.println(new String(str9, "UTF-8"));
    }
}
JAVA 3DESC

转:https://www.cnblogs.com/shindo/p/6346655.html

免责声明:文章转载自《3DESC加密算法》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇简化Web开发的12个HTML5CSS框架安装Manjaro KDE 18.04下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

Hibernate之主键生成策略

Hibernate之主键生成策略 1.1 程序员自己控制:assigned 1.2 数据库控制: identity(标识列/自动增长) sequence 1.3 hibernate控制:increment uuid/uuid.hex 1.4 其它:native hibernate.cfg.xml核心配置文件 Student.hbm.xml 1 <...

Android开发中java与javascript交互:PhoneGap插件vs addJavascriptInterface

1.前言 在《用PhoneGap+jQueryMobile开发Android应用实例》中,我们讲到PhoneGap(以下称Cordova)开发环境的搭建,以及如何整合出一个基本的Android应用框架(并给出了范例代码)。于是乎,我们便开始日夜兼程,披星戴月的炮制我们的第一个手机应用了。 但实际上,除了常见的API调用规范(有且仅有自查手册一途)引起的问题...

Redis使用

一、定义 redis是nosql产品之一,nosql就是无需编写复杂的sql语句。是Remote Dictionary Server(远程字典数据服务)的缩写。 由意大利人 antirez(Salvatore Sanfilippo)  开发的一款 内存高速缓存数据库。该软件使用C语言编写,它的数据模型为 key-value。 它支持丰富的数据结构(类型),...

C#反射动态调用dll中的方法,并返回结果[转]

最近在看工厂开发模式,发现用到了反射,之前只听说过也没怎么用过;所以花了点时间重新温习了一遍; 反射的作用是动态的加载某个dll(程序集),并执行该程序集中的某个方法,并返回结果;当然也可以给该方法传递参数 namespace assembly_name { public class assembly_class {...

PHP类和对象函数实例详解

1. interface_exists、class_exists、method_exists和property_exists:       顾名思义,从以上几个函数的命名便可以猜出几分他们的功能。我想这也是我随着对PHP的深入学习而越来越喜欢这门编程语言的原因了吧。下面先给出他们的原型声明和简短说明,更多的还是直接看例子代码吧。bool interface...

ORM之轻量级框架--Dapper

转自:https://www.cnblogs.com/Erhao/p/10042808.html 一、什么是Dapper? Dapper是一款轻量级Orm框架,它是属于半自动的,它和Entity Framework和NHibernate不同,它只有一个单文件,没有很复杂的配置,如果你喜欢原生Sql语句,而且又是喜欢Orm框架,那么Dapper对于你来说是再...