gpt4 book ai didi

java - Blowfish 解密十六进制编码的字符串

转载 作者:行者123 更新时间:2023-11-30 02:24:31 26 4
gpt4 key购买 nike

我正在尝试通过Blowfish解密十六进制编码的字符串。但结果与正确的不同。

String s="a1d0534e4baf9e670bde8670caee8b87"
String decKey = "R=U!LH$O2B#";
Cipher m_decrypt = Cipher.getInstance("Blowfish/ECB/PKCS5Padding");
m_decrypt.init(Cipher.DECRYPT_MODE, new SecretKeySpec(decKey.getBytes(),"Blowfish"));
byte[] decrypted = m_decrypt.doFinal(Hex.decodeHex(s.toCharArray()));

网站正确结果:c6 b7 8d 52 31 35 30 34 31 38 38 36 39 37 02 02

我的结果:-58 -73 -115 82 49 53 48 52 49 56 56 54 57 55

我在这个网站上检查了正确的字节数组 http://blowfish.online-domain-tools.com/

最佳答案

正确结果:c6 b7 8d 52 31 35 30 34 31 38 38 36 39 37 02 02
采用十六进制编码并包含两个字节的填充。

我的结果:-58 -73 -115 82 49 53 48 52 49 56 56 54 57 55
采用有符号十进制编码,没有填充字节。

它们是相同的值,只是在不同的编码中,其中“我的结果”已像往常一样删除了填充。

关于java - Blowfish 解密十六进制编码的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45984042/

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