gpt4 book ai didi

Java AES解密: random chars & message at the end

转载 作者:行者123 更新时间:2023-12-01 21:54:31 24 4
gpt4 key购买 nike

我在使用 AES 解密消息时遇到问题。最后,当我期待一条消息时,例如

ala123

相反,我收到的是这样的东西:

...6�b}\7�k�8�vFP�8~%��_zժF��FW��O_e���ó������������ala123

我传递给加密的消息构建为:

  • key 是来自 AES_TOKEN 的 SHA-256
  • 密码 IV 是一些字符,然后将其存储在消息中(在开头)
  • 解密的消息被封装成 Base64

问题是为什么最后我最终收到了预期的消息,但开头却有很多垃圾字符?

我的加密代码是:

private static final String AES_TOKEN = "my_very_secret_token";

// encrypted is base64 string
public String decrypt(String encrypted) throws Exception {
byte[] decrypted = Base64.getDecoder().decode(encrypted);
return new String(aesDecrypt(decrypted), "UTF-8");
}

private byte[] aesDecrypt(byte[] message) throws Exception {
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");

byte[] token = MessageDigest.getInstance("SHA-256").digest(AES_TOKEN.getBytes());
SecretKeySpec secretKey = new SecretKeySpec(token, "AES");

IvParameterSpec iv = new IvParameterSpec(Arrays.copyOf(message, 16));

cipher.init(Cipher.DECRYPT_MODE, secretKey, iv);
return cipher.doFinal(message);
}

最佳答案

在将消息读入 iv 后,您似乎没有从 message 的开头删除 IV。这可以解释解密消息开头的垃圾。

关于Java AES解密: random chars & message at the end,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34594719/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com