- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
亲爱的,
我需要帮助来理解为什么 decryptString 不起作用并抛出“java.security.InvalidKeyException:需要 RSA 私钥或公钥”。当调用加密方法时,我通过私钥/证书使用公钥。
感谢您的帮助!
public class KeysHandler {
/***
* Generate and store in AndroidKeyStore a security KeyPair keys.
* @param alias - Alias to create the key.
* @return KeyPair object with: private and public key.
*/
public static KeyPair generateKeyPair(String alias) {
KeyPair kp = null;
if (alias != null) {
try {
KeyPairGenerator kpg = KeyPairGenerator.getInstance(KeyProperties.KEY_ALGORITHM_RSA, "AndroidKeyStore");
kpg.initialize(new KeyGenParameterSpec.Builder(alias,
KeyProperties.PURPOSE_SIGN |
KeyProperties.PURPOSE_VERIFY |
KeyProperties.PURPOSE_ENCRYPT |
KeyProperties.PURPOSE_DECRYPT)
.setEncryptionPaddings(KeyProperties.ENCRYPTION_PADDING_RSA_PKCS1)
.build());
kp = kpg.generateKeyPair();
} catch (NoSuchProviderException | NoSuchAlgorithmException | InvalidAlgorithmParameterException ex) {
kp = null;
}
}
return kp;
}
public static String encryptString(String alias, String textToEncrypt) {
String cipheredText = null;
try {
KeyStore keyStore = KeyStore.getInstance("AndroidKeyStore");
keyStore.load(null);
KeyStore.PrivateKeyEntry privateKeyEntry = (KeyStore.PrivateKeyEntry)keyStore.getEntry(alias, null);
// Encrypt the text
if(textToEncrypt != null && textToEncrypt.length() > 0) {
Cipher input = Cipher.getInstance("RSA/ECB/PKCS1Padding", "AndroidOpenSSL");
input.init(Cipher.ENCRYPT_MODE, privateKeyEntry.getCertificate().getPublicKey());
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
CipherOutputStream cipherOutputStream = new CipherOutputStream(
outputStream, input);
cipherOutputStream.write(textToEncrypt.getBytes("UTF-8"));
cipherOutputStream.close();
byte[] vals = outputStream.toByteArray();
cipheredText = Base64.encodeToString(vals, Base64.DEFAULT);
}
} catch (Exception e) {
cipheredText = null;
}
return cipheredText;
}
public static String decryptString(String alias, String cipheredText) {
String clearText = null;
try {
KeyStore keyStore = KeyStore.getInstance("AndroidKeyStore");
keyStore.load(null);
KeyStore.PrivateKeyEntry privateKeyEntry = (KeyStore.PrivateKeyEntry)keyStore.getEntry(alias, null);
Cipher output = Cipher.getInstance("RSA/ECB/PKCS1Padding", "AndroidOpenSSL");
output.init(Cipher.DECRYPT_MODE, privateKeyEntry.getPrivateKey());
CipherInputStream cipherInputStream = new CipherInputStream(
new ByteArrayInputStream(Base64.decode(cipheredText, 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();
}
clearText = new String(bytes, 0, bytes.length, "UTF-8");
} catch (Exception e) {
clearText = null;
}
return clearText;
}
}
最佳答案
尝试省略密码提供者:
Cipher output = Cipher.getInstance("RSA/ECB/PKCS1Padding");
其次,您可以先实例化提供者以确保其有效,然后将其作为第二个参数传递给 Cipher.getInstance()
。第二个参数可以是字符串(提供者名称) 或提供者(对象)。使用第二个可能会使调试更容易。
关于java - Android 加密 RSA InvalidKeyException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42250058/
我遇到的问题只有在我要生成签名的 apk 时才会发生,但是当我直接从 Android Studio 运行时,一切正常。 错误发生在这里: val key = keyStore? .getKey(KEY
我在尝试使用我的公钥加密时遇到了上述异常。 java.security.InvalidKeyException: IOException: DerInputStream.getLength(): le
我是 Java 新手,想使用 RSA 算法包装对称 key 。就我而言,我不会生成用于包装的公钥,而是从 Microsoft Keystore 检索公钥。 // Encrypt the generat
我已经能够使用该算法来加密和解密文件,但是当我尝试将文件从 Android 发送到 WAS 服务器时,它失败了。这是加密的一面 Security.addProvider(new BouncyC
我需要将加密的密码存储在数据库中而不存储任何 key 或盐。我想确保它也更安全,即使它是双向加密。所以在谷歌搜索了一下之后,我创建了一个示例程序来测试它。我的想法是创建一个自定义 JPA Attrib
我正在尝试在 android 上运行 netty。它在运行 3.2 的摩托罗拉 Xoom 平板电脑上运行良好。但它在分别运行 2.3.6 和 3.1 的 Samsung Galaxy S 和 Gala
亲爱的, 我需要帮助来理解为什么 decryptString 不起作用并抛出“java.security.InvalidKeyException:需要 RSA 私钥或公钥”。当调用加密方法时,我通过私
我目前正在开发一个使用 key 加密/解密特定文件的功能。我写了三个类,一个生成 key ,一个用 key 加密文件,一个解密。 生成 key 和加密文件工作正常,但是当我尝试解密文件时,在以下行抛出
我有一个测试在我的开发 MacBook Pro 上运行良好,但无法在持续集成 TeamCity 服务器中运行。 错误如下: java.security.InvalidKeyException: Ill
我正在 netbeans 中构建一个桌面应用程序,以便在密码键盘(设备)上加载按键。相同的代码在 android 上运行并且使用 16 字节键可以正常工作但是在桌面应用程序上它会抛出 16 字节错误但
我的任务是通过 LDAP 实现对 Active Directory 联合身份验证服务 (SSL) 的可访问性。起初我不得不说我在 ADFS 和 SAML 方面的经验非常少。我决定采用 Spring S
我正在使用以下示例: http://compscipleslab.wordpress.com/category/java/ 但是我遇到了异常,当我记录异常时,它出现在我的 logcat 中,说明:In
我正在尝试编写一个服务来处理用户密码哈希和验证。我正在使用 Wildfly Elytron 库,并在 quarkus Web 服务的上下文中使用该服务。我遇到的问题是,当我尝试验证密码时,验证方法会抛
这个问题已经有答案了: InvalidKeyException Illegal key size (6 个回答) 已关闭 5 年前。 实际上,我收到 InvalidKeyException: 非法 k
编写代码生成数字证书 这是导致问题的代码段 PBEKeySpec keySpec = new PBEKeySpec(password); SecretKeyFactory keyFactory =
我已将 ODL Netconf 测试工具 (netconf-testtool-1.1.0-Boron-executable.jar) 部署到我的 Nitrogen ODL Controller 上,以
尝试在客户端和服务器之间进行 TLS 握手。但是,更改密码规范步骤失败。同样在客户端收到如下所述的异常:我无法理解为什么我会收到如下奇怪的异常。 这是什么意思?关于如何解决此问题的任何想法? 我在 J
我收到 java.security.InvalidKeyException: Keystore operation failed。有人有想法吗?这是我的代码: initDecodeCipher 代码:
我在我的应用程序中使用 Sun 的 MSCAPI 提供程序来检索签名证书。签名者的私钥是 sun.security.mscapi.RSAPrivateKey。IAIK 似乎无法识别此类(请参阅下面的错
我必须读取 pem key 文件以获得 RSA 公钥,然后使用它们进行加密。我可以使用 openssl 并将 pem 文件转换为 der 文件来执行此操作。然后使用 X509EncodedKeySpe
我是一名优秀的程序员,十分优秀!