我试图解密从服务器发送到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发送类似&#34; Hello&#34;的消息时,android会成功解密它。但是当我发送加密图像时,我得到了规定的错误。
我一直在努力寻找错误。
任何帮助?
由于
答案 0 :(得分:1)
RSA非对称密钥加密是公钥加密使用的,即RSA本质上是公钥加密。如果必须使用公钥/私钥对加密,则答案是混合加密,类似于SSL。
创建随机对称密钥,使用它来使用AES加密数据。然后使用RSA公钥加密对称密钥。
在解密时,首先使用RSA私钥解密对称密钥,并使用它来使用对称AES解密数据。
如果您正在寻找安全加密,您真的需要让一个域专家来至少设计和维护实施。安全性很难做到,如果不对,则无法提供安全性。