rsa加密不适用于从xml文件获取密钥的情况

xiozqbni  于 2021-07-05  发布在  Java
关注(0)|答案(0)|浏览(282)

我一直在尝试用给定指数和模的rsa加密aes密钥。我正在从一个c#restful web服务获取密钥xml文件。xml键看起来有点像:

  1. <RSAKeyValue><Modulus>vJaqEtwrfG...LFF7XACWCb6lQ==</Modulus><Exponent>AQAB</Exponent></RSAKeyValue>

我正在解析xml,并使用以下函数将其保存在私有变量中:

  1. public void initPublicKeyFromServer(Context context) {
  2. String strModulusBytes = "";
  3. String strExpBytes = "";
  4. Log.i("rsaEncryptSecretKey", "pos1");
  5. try {
  6. InputStream inputStream = context.openFileInput("puk.txt");
  7. InputStreamReader inputStreamReader = new InputStreamReader(inputStream, StandardCharsets.UTF_16);
  8. BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
  9. String receiveString = bufferedReader.readLine();
  10. XmlPullParserFactory factory = XmlPullParserFactory.newInstance();
  11. factory.setNamespaceAware(true);
  12. XmlPullParser xpp = factory.newPullParser();
  13. xpp.setInput(new StringReader(receiveString));
  14. int eventType = xpp.getEventType();
  15. xpp.next();
  16. String xmlTag = xpp.getName();
  17. while (eventType != XmlPullParser.END_DOCUMENT) {
  18. eventType = xpp.next();
  19. xmlTag = xpp.getName();
  20. if(eventType == XmlPullParser.START_TAG) {
  21. if (xmlTag.equals("RSAKeyValue")) {
  22. continue;
  23. }
  24. }
  25. if(eventType == XmlPullParser.START_TAG) {
  26. if (xmlTag.equals("Modulus")) {
  27. eventType = xpp.next();
  28. xmlTag = xpp.getName();
  29. strModulusBytes = xpp.getText();
  30. eventType = xpp.next();
  31. xmlTag = xpp.getName();
  32. }
  33. }
  34. if(eventType == XmlPullParser.START_TAG) {
  35. if (xmlTag.equals("Exponent")) {
  36. eventType = xpp.next();
  37. xmlTag = xpp.getName();
  38. strExpBytes = xpp.getText();
  39. eventType = xpp.next();
  40. xmlTag = xpp.getName();
  41. }
  42. }
  43. }
  44. } catch (Exception e) {
  45. e.printStackTrace();
  46. }
  47. byte[] modBytes = StandardCharsets.UTF_16.encode(strModulusBytes).array();
  48. byte[] expBytes = StandardCharsets.UTF_16.encode(strExpBytes).array();
  49. BigInteger modules = new BigInteger(1, modBytes);
  50. BigInteger exponent = new BigInteger(1, expBytes);
  51. try {
  52. KeyFactory factory = KeyFactory.getInstance("RSA");
  53. RSAPublicKeySpec pubSpec = new RSAPublicKeySpec(modules, exponent);
  54. publicKey = factory.generatePublic(pubSpec);
  55. rsaCipher = Cipher.getInstance(KeyPairInstanceType);
  56. rsaCipher.init(Cipher.ENCRYPT_MODE, publicKey);
  57. } catch (Exception e) {
  58. e.printStackTrace();
  59. }
  60. }
  61. public byte[] rsaEncrypt(final byte[] plain) throws Exception {
  62. rsaCipher.init(Cipher.ENCRYPT_MODE, publicKey);
  63. byte[] encryptedBytes = rsaCipher.doFinal(plain);
  64. return encryptedBytes;
  65. }
  66. public byte[] rsaEncrypt(final String plain) throws Exception {
  67. rsaCipher.init(Cipher.ENCRYPT_MODE, publicKey);
  68. byte[] encryptedBytes = rsaCipher.doFinal(plain.getBytes());
  69. return encryptedBytes;
  70. }

我得到以下例外,我已经坚持了过去一周。你知道我怎么解决吗?
w/system.err:java.lang.runtimeexception:运行时异常:error:04000065:rsa公司routines:openssl_internal:错误的\u e \u值
这和utf-16编码有关吗?standardcharsets.utf_16.encode(strmodulusbytes).array();提前多谢。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题