我正在努力让Java代码输出与C#代码相同的Byte []。
using System;
using System.IO;
using System.Security.Cryptography;
using System.Text;
public class Program
{
private const string k = "A2B3C4D1";
private const string kiv = "1A2B3C4D";
public static void Main()
{
encrypt("peanuts");
}
public static void encrypt(string str)
{
try
{
using (var ms = new MemoryStream())
using (var csp = new DESCryptoServiceProvider() { Key = Encoding.UTF8.GetBytes(k), IV = Encoding.UTF8.GetBytes(kiv) })
{
Console.WriteLine("Algorithm: DES?/" + csp.Mode + "/" + csp.Padding);
Console.WriteLine("BlockSize: " + csp.BlockSize);
using (var cs = new CryptoStream(ms, csp.CreateEncryptor(), CryptoStreamMode.Write))
using (var sw = new StreamWriter(cs))
sw.WriteLine(str);
byte[] barray = ms.ToArray();
Console.WriteLine("barray length: " + barray.Length);
Console.WriteLine("barray: " + string.Join(" ", barray));
}
}
catch (Exception ex) { Console.Write(ex.ToString()); }
}
}
import java.io.ByteArrayOutputStream;
import java.nio.charset.Charset;
import java.security.Security;
import javax.crypto.Cipher;
import javax.crypto.CipherOutputStream;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
public class MyClass {
private static final String k = "A2B3C4D1";
private static final String kiv = "1A2B3C4D";
public static void main(String args[]) {
Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider());
encrypt("peanuts");
}
public static void encrypt(String str) {
try {
SecretKeySpec key = new SecretKeySpec(k.getBytes(Charset.forName("UTF-8")), "DES");
IvParameterSpec iv = new IvParameterSpec(kiv.getBytes(Charset.forName("UTF-8")));
Cipher cipher = Cipher.getInstance("DES/CBC/PKCS7Padding");
cipher.init(Cipher.ENCRYPT_MODE, key, iv);
System.out.println("Algorithm: " + cipher.getAlgorithm());
System.out.println("BlockSize: " + cipher.getBlockSize());
ByteArrayOutputStream out = new ByteArrayOutputStream();
CipherOutputStream cos = new CipherOutputStream(out, cipher);
cos.write(str.getBytes());
cos.close();
byte[] barray = out.toByteArray();
System.out.println("barray length: " + barray.length);
System.out.print("barray: ");
for(byte b : barray){
System.out.print(" " + b);
}
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
C#输出
算法:DES?/ CBC / PKCS7
BlockSize:64
barray长度:16
barray:107 125 91 205 77 206 98 120 214 194 194 64 167 128 97 132 75
base64:a31bzU3OYnjWwkCngGGESw ==
Java输出
算法:DES / CBC / PKCS7Padding
BlockSize:8
barray长度:8
barray:45 100 -86 103 9 -7 -19 -76
base64:LWSqZwn57bQ =
我正在尝试从Java代码中获得与从Byte[]
中获得的输出完全相同的C#
。但我设法看到的唯一区别是块大小两者都不同。
我只是不明白,有什么我想念或不明白的东西吗?
我添加了代码以字符串形式打印出字节数组,这有所不同:
C#
barray length: 16
barray: 107 125 91 205 77 206 98 120 214 194 64 167 128 97 132 75
base64: a31bzU3OYnjWwkCngGGESw==
Java
barray length: 8
barray: 45 100 -86 103 9 -7 -19 -76
base64: LWSqZwn57bQ=
答案 0 :(得分:2)
@JamesKPolk是正确的:您正在C#中加密{ (byte)'p', (byte)'e', (byte)'a', (byte)'n', (byte)'u', (byte)'t', (byte)'s', (byte)'\r', (byte)'\n' }
,在Java中正在加密{ (byte)'p', (byte)'e', (byte)'a', (byte)'n', (byte)'u', (byte)'t', (byte)'s' }
。
由于“花生”(在UTF-8中)为7个字节,因此可以将PKCS7填充到一个DES块中。接下来的1-8个字节将导致第二个块...,您添加了两个。
将Dot.Net小提琴中的代码更改为Write
而不是WriteLine
会产生
Algorithm: DES?/CBC/PKCS7
BlockSize: 64
barray length: 8
barray: 45 100 170 103 9 249 237 180
barray: LWSqZwn57bQ=
现在唯一的区别是C#BlockSize是位,而Java代码将其作为字节。
在JDoodle中将"peanuts"
更改为"peanuts\r\n"
,您会得到
Algorithm: DES/CBC/PKCS7Padding
BlockSize: 8
barray length: 16
barray: 107 125 91 -51 77 -50 98 120 -42 -62 64 -89 -128 97 -124 75
barray: a31bzU3OYnjWwkCngGGESw==
如果将barray
十进制内容打印为无符号值而不是有符号值(将256加到所有负数上),这是相同的-在Base64中容易看到的事实是相同的。 / p>