1

我相信当 EnterpriseLibrary 尝试解密 RijndaelManaged 加密字符串时,它期望初始化向量被添加到加密文本中。目前使用下面的代码。我可以毫无例外地解密消息,但是我得到了一些奇怪的字符,例如:

�猀漀碗搀㴀眀最爀甀恋攀㄀☀甀琀挀㴀㈀㄀ⴀ㄀ⴀ㈀㄀吀㄀㌀㨀㔀㈀㨀㄀㌀

我需要做什么才能完成这项工作?任何帮助是极大的赞赏。这是我的一些代码...

我有一个使用 EnterpriseLibrary 4.1(加密:RijndaelManaged)解密数据的 C# 应用程序。

string message = "This encrypted message comes from Java Client";
Cryptographer.DecryptSymmetric("RijndaelManaged", message);

客户端加密消息,用 Java 实现。

public String encrypt(String auth) {
           try {
               String cipherKey = "Key as a HEX string";
               byte[] rawKey = hexToBytes(cipherKey);
               SecretKeySpec keySpec = new SecretKeySpec(rawKey, "AES");
               Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");

               String cipherIV = "xYzF5AqA2cKLbvbfGzsMwg==";
               byte[] btCipherIV = Base64.decodeBase64(cipherIV.getBytes());

               cipher.init(Cipher.ENCRYPT_MODE, keySpec, new IvParameterSpec (btCipherIV));
               byte[] unencrypted = StringUtils.getBytesUtf16(auth);
               byte[] encryptedData = cipher.doFinal(unencrypted);
               String encryptedText = null;

               byte[] entlib = new byte[btCipherIV2.length + encryptedData.length];
               System.arraycopy(btCipherIV, 0, entlib, 0, btCipherIV.length);
               System.arraycopy(encryptedData, 0, entlib, btCipherIV.length, encryptedData.length);

               encryptedText = new String(encryptedData);
               encryptedText = Base64.encodeBase64String(encryptedData);               
               return encryptedText;

           } catch (Exception e) {
           }

           return "";
       }

    public static byte[] hexToBytes(String str) {
          if (str==null) {
             return null;
          } else if (str.length() < 2) {
             return null;
          } else {
             int len = str.length() / 2;
             byte[] buffer = new byte[len];
             for (int i=0; i<len; i++) {
                 buffer[i] = (byte) Integer.parseInt(
                    str.substring(i*2,i*2+2),16);
             }
             return buffer;
          }

       }
4

1 回答 1

1

我找到了答案。上面代码中的问题:

StringUtils.getBytesUtf16(auth);

相反,企业库使用的是 Little Endian 字节顺序。我使用的功能没有。相反,我应该使用:

StringUtils.getBytesUtf16Le(auth);

这解决了我的问题。感谢任何为此掠夺的人。我很感激!

于 2010-10-23T16:47:03.733 回答