gpt4 book ai didi

javascript - 如何在javascript中解密由JAVA使用AES加密的文件

转载 作者:行者123 更新时间:2023-11-28 17:55:49 34 4
gpt4 key购买 nike

我已经用 AES256 在 Java 中加密了 JPG 文件,但不知道在 javascript 中解密 JPG 文件。有人有更好的主意吗?我已经为此苦苦挣扎了 4 天。

 byte[] ivBytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
String key = "1234567890123456789012345678901d";

AlgorithmParameterSpec ivSpec = new IvParameterSpec(ivBytes);
SecretKeySpec newKey = new SecretKeySpec(key.getBytes("UTF-8"), "AES");
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
cipher.init(mode, newKey, ivSpec);

InputStream input = null;
OutputStream output = null;

try {
input = new BufferedInputStream(new FileInputStream(new File("/home/java/test/aaa.JPG")));
output = new BufferedOutputStream(new FileOutputStream(new File("/home/java/test/bbb.JPG")));
byte[] buffer = new byte[1024];
int read = -1;

while((read = input.read(buffer)) != -1){
output.write(cipher.update(buffer, 0, read));
}

output.write(cipher.doFinal());
}
finally {
if(output != null){
try {
output.close();
} catch(IOException ie){
logger.info(ie.getMessage());
}
}
if(input != null){
try {
input.close();
} catch(IOException ie){
logger.info(ie.getMessage());
}
}
}

这是我迄今为止尝试过的代码。我使用了 CryptoJS 并且 Decrypt 没有返回任何内容。

<!DOCTYPE html>
<html>
<head>

<script type="text/javascript" src="./CryptoJS v3.1.2/rollups/aes.js"></script>
<script type="text/javascript" src="jquery-3.2.1.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>

<style>
article, aside, figure, footer, header, hgroup,
menu, nav, section { display: block; }
</style>
</head>
<body>
<input type='file' onchange="readURL(this);" />
<img id="blah" src="#" alt="your image" />
<a class="download" href="">Download</a>

<script>
var a = $('.download');
var key = CryptoJS.enc.Hex.parse("1234567890123456789012345678901d");
var iv = CryptoJS.enc.Hex.parse("00000000000000000000000000000000");

function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();

reader.onload = function (e) {


/////////
var decrypted = CryptoJS.AES.decrypt(e.target.result, key,
{
iv: iv,
mode: CryptoJS.mode.CBC,
padding: CryptoJS.pad.Pkcs7
}
).toString(CryptoJS.enc.Latin1);


if(!/^data:/.test(decrypted)){
alert("Invalid pass phrase or file! Please try again.");
return false;
}

a.attr('href', decrypted);
a.attr('download', input.files[0].name.replace('.enc',''));


};

//reader.readAsDataURL(input.files[0]);
reader.readAsText(input.files[0]);
}
}


</script>
</body>
</html>

最佳答案

您的 key 错误,Java(错误地)使用 key 的 ASCII 表示形式:

String key = "1234567890123456789012345678901d";
...
SecretKeySpec newKey = new SecretKeySpec(key.getBytes("UTF-8"), "AES");

这会产生 AES-256 的 32 字节 key 。但是您的 JavaScript 使用 key 的十六进制解码:

var key =  CryptoJS.enc.Hex.parse("1234567890123456789012345678901d");

这会产生 AES-128 的 16 字节 key 。

使用错误的键,您显然不会得到正确的结果。

因此,您要么必须像在 Java 中进行 IV 一样对 key 进行编码,要么使用十六进制解码器(默认情况下 Java 中不存在),或者您应该“修复”JavaScript 以执行与 Java 中相同的操作并使用 key 字符串的 ASCII 编码。

一般来说,键不应该是字符串。

关于javascript - 如何在javascript中解密由JAVA使用AES加密的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44469651/

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