gpt4 book ai didi

php - 在Android中解密Base64加密图像

转载 作者:行者123 更新时间:2023-11-30 00:55:00 25 4
gpt4 key购买 nike

我正在尝试解密从服务器发送到 Android 应用程序的文本。在 PHP 上,我有以下内容:

$rsa = new Crypt_RSA();
$rsa->setEncryptionMode(CRYPT_RSA_ENCRYPTION_PKCS1);
$rsa->setPrivateKeyFormat(CRYPT_RSA_PRIVATE_FORMAT_PKCS1);
$rsa->setPublicKeyFormat(CRYPT_RSA_PUBLIC_FORMAT_PKCS1);
$key = "-----BEGIN PUBLIC KEY-----\n" . ($PublicKey)
. '-----END PUBLIC KEY-----';
$rsa->loadKey($key);
$base64 = 'data:image/' . $type . ';base64,' . base64_encode($data);
$imageEncrypt = base64_encode($rsa->encrypt($base64));

编码和加密效果很好。当我将加密文本发送到 android 时,我无法解密。我使用了代码:

public static String decryptString(String alias,String cipherText) {
try {
KeyStore.PrivateKeyEntry privateKeyEntry = (KeyStore.PrivateKeyEntry)keyStore.getEntry(alias, null);
// RSAPrivateKey privateKey = (RSAPrivateKey) privateKeyEntry.getPrivateKey();

Cipher output = Cipher.getInstance("RSA/ECB/PKCS1Padding");
output.init(Cipher.DECRYPT_MODE, privateKeyEntry.getPrivateKey());

CipherInputStream cipherInputStream = new CipherInputStream(
new ByteArrayInputStream(Base64.decode(cipherText, Base64.DEFAULT)), output);
ArrayList<Byte> values = new ArrayList<>();
int nextByte;
while ((nextByte = cipherInputStream.read()) != -1) {
values.add((byte)nextByte);
}

byte[] bytes = new byte[values.size()];
for(int i = 0; i < bytes.length; i++) {
bytes[i] = values.get(i).byteValue();
}

String finalText = new String(bytes, 0, bytes.length, "UTF-8");
return finalText;
//decryptedText.setText(finalText);

} catch (Exception e) {
Toast.makeText(context, "Exception " + e.getMessage() + " occured", Toast.LENGTH_LONG).show();
Log.e("DecryptStringTAG", Log.getStackTraceString(e));
}
return "EMPTY";
}

错误是:

java.io.IOException: Error while finalizing cipher
Caused by: javax.crypto.IllegalBlockSizeException

奇怪的是,当我尝试从 PHP 发送“Hello”之类的消息时,android 成功解密了它。但是当我发送加密图像时,我得到了规定的错误。

我一直在努力寻找错误。

有什么帮助吗?

谢谢

最佳答案

公钥加密使用的RSA非对称 key 加密,即RSA本质上是公钥加密。如果您必须使用公钥/私钥对加密,答案就是混合加密,类似于 SSL。

创建一个随机对称 key ,使用它通过 AES 加密数据。然后用RSA公钥加密对称 key 。

解密时,首先使用 RSA 私钥解密对称 key ,然后使用它通过对称 AES 解密数据。

如果您正在寻找安全加密,您确实需要让领域专家至少设计和审查实现。安全性很难做到正确,如果不正确就无法提供安全性。

关于php - 在Android中解密Base64加密图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40330822/

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