3DES算法,得到的密文和标准的不匹配(50)

  • 主题发起人 主题发起人 cking331
  • 开始时间 开始时间
C

cking331

Unregistered / Unconfirmed
GUEST, unregistred user!
密钥:0123456789ABCDEFFEDCBA9876543210明文:0000000000000000密文:+LbAOv/nr0vGhzmKlE7+0w==我是用的Delphi组件TDCP_3des加密的, 怎么得到的密文是:+LbAOv/nr0vGhzmKlE7+0w==正确密文好像是【08d7b4fb629d0885】哪位大师指点下啊!!--相关说明3des加密后,如果是以十六进制输出的话,那密文是明文大小的2倍;若是2进制输出的话,那密文是明文大小的8倍;若以字符形式输出的话,那密文达到时【等于明文大小】!=============3DES算法 3DES算法是指使用双长度(16字节)密钥K=(KL||KR)将8字节明文数据块进行3次DES加密/解密。如下所示: Y = DES(KL)[DES-1(KR)[DES(KL[X])]] 解密方式为: X = DES-1 (KL)[DES (KR)[ DES-1 (KL[Y])]] 其中,DES(KL[X])表示用密钥K对数据X进行DES加密,DES-1 (KL[Y])表示用密钥K对数据Y进行解密。 SessionKey的计算采用3DES算法,计算出单倍长度的密钥。表示法为:SK = Session(DK,DATA) 3DES加密算法为: VOID 3DES(BYTE DoubleKeyStr[16], BYTE Data[8], BYTE Out[8]) { BYTE Buf1[8], Buf2[8]; DES (&DoubleKeyStr[0], Data, Buf1); UDES(&DoubleKeyStr[8], Buf1, Buf2); DES (&DoubleKeyStr[0], Buf2, Out); }
 
都是3Des加密算法,但是实现的方式不一样,得到的结果就不一样。你正确的结果是3Des的对称加密算法。你用TDCP_3des得到的结果应该是被Base64加密算法处理过的。
 
谢谢, 能提供一个3Des的对称加密算法吗?
 
3DES对称加密算法C# 实现using System;using System.Web.Security;using System.Security;using System.Security.Cryptography;using System.Text;using System.IO;namespace CommonTools{/// <summary>/// 3DES的摘要说明。/// </summary>public class 3DES{ public 3DES() { // // TODO: 在此处添加构造函数逻辑 // } #region 3DES加密/解密 //密钥 //sKey输入密码的时候,必须使用英文字符,区分大小写,且字符数量是8个,不能多也不能少,否则出错。 private const string sKey = "AqjWCgRP"; //矢量,矢量可以为空 private const string sIV = "YnExToNe"; //构造一个对称算法 #region public string EncryptString(string ToEntryptString) /// <summary> /// 使用DES加密字符串 /// </summary> /// <param name="ToEntryptString">需要加密的字符串</param> /// <returns>加密结果字符串</returns> public static string EncryptStringBy3DES(string ToEntryptString) { DESCryptoServiceProvider des = new DESCryptoServiceProvider(); //把字符串放到byte数组中 byte[] inputByteArray = Encoding.Default.GetBytes(ToEntryptString); //建立加密对象的密钥和偏移量 des.Key = ASCIIEncoding.ASCII.GetBytes(sKey); des.IV = ASCIIEncoding.ASCII.GetBytes(sIV); 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 public string DecryptString(string Value) /// <summary> /// 解密DES加密字符串 /// </summary> /// <param name="ToDecryptString">解密字符串</param> /// <returns>解密结果字符串</returns> public static string DecryptStringBy3DES(string ToDecryptString) { DESCryptoServiceProvider des = new DESCryptoServiceProvider(); //Put the input string into the byte array byte[] inputByteArray = new byte[ToDecryptString.Length / 2]; for (int x = 0; x < ToDecryptString.Length / 2; x++) { int i = (Convert.ToInt32(ToDecryptString.Substring(x * 2, 2), 16)); inputByteArray[x] = (byte)i; } //建立加密对象的密钥和偏移量,此值重要,不能修改 des.Key = ASCIIEncoding.ASCII.GetBytes(sKey); des.IV = ASCIIEncoding.ASCII.GetBytes(sIV); MemoryStream ms = new MemoryStream(); CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(), CryptoStreamMode.Write); //Flush the data through the crypto stream into the memory stream cs.Write(inputByteArray, 0, inputByteArray.Length); cs.FlushFinalBlock(); //Get the decrypted data back from the memory stream //建立StringBuild对象,CreateDecrypt使用的是流对象,必须把解密后的文本变成流对象 StringBuilder ret = new StringBuilder(); return System.Text.Encoding.Default.GetString(ms.ToArray()); } #endregion #endregion }}
 
TO de410:你这个算法也用Base64加密算法处理过了, 而且你的sKey只能是8位, 我需要16位的。============================================================================3des加密后,如果是以十六进制输出的话,那密文是明文大小的2倍;若是2进制输出的话,那密文是明文大小的8倍;若以字符形式输出的话,那密文达到时【等于明文大小】!有高手提供一个有验证的算法给我吗, 非常感谢了!验证数据密钥:0123456789ABCDEFFEDCBA9876543210明文:0000000000000000密文:08d7b4fb629d0885
 
后退
顶部