加密Java然后使用HMACSHA256解密C#AES256加密,填充无效

时间:2017-09-20 13:31:59

标签: java c# encryption

我目前遇到一个问题,我们的C#网站的解密部分遇到了来自java的加密字符串填充的问题。 .Net代码抛出此错误“填充无效且无法删除”。 _signKey和_encKey都是64字节。

public String encryptString(String plainText) {
        byte[] ciphertext;
        byte[] iv = new byte[16];
        byte[] plainBytes = plainText.getBytes(StandardCharsets.UTF_8);
        String _signKey = "****************************************************************";
        String _encKey = "****************************************************************";



        try {
            Mac sha256 = Mac.getInstance("HmacSHA256");
            SecretKeySpec shaKS = new SecretKeySpec(_signKey.getBytes(StandardCharsets.UTF_8), "HmacSHA256");
            sha256.init(shaKS);

            Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
            SecureRandom randomSecureRandom = SecureRandom.getInstance("SHA1PRNG");
            iv = new byte[cipher.getBlockSize()];
            randomSecureRandom.nextBytes(iv);
            IvParameterSpec ivParams = new IvParameterSpec(iv);
            byte[] sessionKey = sha256.doFinal((_encKey + iv).getBytes(StandardCharsets.UTF_8));
            // Perform Encryption
            SecretKeySpec eks = new SecretKeySpec(sessionKey, "AES");
            cipher.init(Cipher.ENCRYPT_MODE, eks, ivParams);

            ciphertext = cipher.doFinal(plainBytes);
            System.out.println("ciphertext= " + new String(ciphertext));
            // Perform HMAC using SHA-256 on ciphertext
            SecretKeySpec hks = new SecretKeySpec(_signKey.getBytes(StandardCharsets.UTF_8), "HmacSHA256");
            Mac mac = Mac.getInstance("HmacSHA256");
            mac.init(hks);

            ByteArrayOutputStream outputStream2 = new ByteArrayOutputStream();
            outputStream2.write(iv);
            outputStream2.write(ciphertext);
            outputStream2.flush();
            outputStream2.write(mac.doFinal(outputStream2.toByteArray()));
            return Base64.encodeBase64String(outputStream2.toByteArray());

        } catch (Exception e) {
            e.printStackTrace();
        }
        return plainText;
    }

据我所知,是否正确加密了字符串。我们无法更改.Net端的任何代码来解密它,因为今天正在使用它。

public static string DecryptString(string ciphertext)
    {
        using (HMACSHA256 sha256 = new HMACSHA256(Encoding.UTF8.GetBytes(_signKey)))
        {
            // Convert message to bytes
            byte[] encBytes = Convert.FromBase64String(ciphertext);

            // Get arrays for comparing HMAC tags
            byte[] sentTag = new byte[sha256.HashSize / 8];
            byte[] calcTag = sha256.ComputeHash(encBytes, 0, (encBytes.Length - sentTag.Length));

            // If message length is too small return null
            if (encBytes.Length < sentTag.Length + _ivLength) { return null; }

            // Copy tag from end of encrypted message
            Array.Copy(encBytes, (encBytes.Length - sentTag.Length), sentTag, 0, sentTag.Length);

            // Compare tags with constant time comparison, return null if no match
            int compare = 0;
            for (int i = 0; i < sentTag.Length; i++) { compare |= sentTag[i] ^ calcTag[i]; }
            if (compare != 0) { return null; }

            using (AesCryptoServiceProvider csp = new AesCryptoServiceProvider())
            {
                // Set parameters
                csp.BlockSize = _blockBits;
                csp.KeySize = _keyBits;
                csp.Mode = CipherMode.CBC;
                csp.Padding = PaddingMode.PKCS7;

                // Copy init vector from message
                var iv = new byte[_ivLength];
                Array.Copy(encBytes, 0, iv, 0, iv.Length);

                // Derive session key
                byte[] sessionKey = sha256.ComputeHash(Encoding.UTF8.GetBytes(_encKey + iv));

                // Decrypt message
                using (ICryptoTransform decrypt = csp.CreateDecryptor(sessionKey, iv))
                {
                    return Encoding.UTF8.GetString(decrypt.TransformFinalBlock(encBytes, iv.Length, encBytes.Length - iv.Length - sentTag.Length));
                }
            }
        }
    }

如果有什么东西突出,我们将不胜感激。

2 个答案:

答案 0 :(得分:0)

我没有阅读你的所有代码,但这一行是用Java编写的:

byte[] sessionKey = sha256.doFinal((_encKey + iv).getBytes(StandardCharsets.UTF_8));

没有任何用处或明智之举。 “+”运算符执行字符串连接,但ivbyte[],而不是字符串。所以java使用iv.toString(),它只返回一个包含[B@1188e820之类的字符串,在这种情况下没有意义。

答案 1 :(得分:-2)

参考四个java代码和DotNet代码:

Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); //Java
csp.Padding = PaddingMode.PKCS7; //.Net

您实际上使用的是不同的填充,这可能是错误的来源;但是,还有一个备用视图,Refer this great postthis for general fundamentals on padding

由deafult Oracle JVM实现are here

支持的密码套件

如果您发现它没有'AES / CBC / PKCS7Padding',则sun.security包refer this中提供了PKCS#7填充实现,否则您可以使用Bouncy Castle个包。建议使用Bouncy Castle,因为com.sun包通常被认为是不受支持的。