AndroidでRSAを使用するプログラムを書いています。次の問題があります: RSA キーを取得しています:
KeyPair kp = kpg.genKeyPair();
publicKey = kp.getPublic();
privateKey = kp.getPrivate();
暗号化関数を使用してテスト文字列を暗号化する:
String test ="test";
byte[] testbytes = test.getBytes();
Cipher cipher = Cipher.getInstance("RSA");
cipher.init(Cipher.ENCRYPT_MODE, publicKey);
byte[] cipherData = cipher.doFinal(testbytes);
String s = new String(cipherData);
Log.d("testbytes after encryption",s);
復号化関数では、データを復号化して元の文字列を取得しています
Cipher cipher2 = Cipher.getInstance("RSA");
cipher2.init(Cipher.DECRYPT_MODE, privateKey);
byte[] plainData = cipher.doFinal(cipherData);
String p = new String(plainData);
Log.d("decrypted data is:",p);
ログに出力された 'p' のデータは、元の文字列 "test" と一致しません。これでどこが間違っているのですか?