I have been tinkering with BB RSA Crypto today and managed to encrypt a string successfully (I think, can't decrypt to test). My problem lies in decryption. I've trawled the forums and tried lots of combinations of code but nothing seems to work. All calls to decrypt the cipertext hang/block the app.
Well, i've only tried on the simulator and it blocks for over 10 minutes. I'm assuming that somethings wrong.
Below I am showing my code to encrypt and decrypt a String. Any insight into what is wrong with my decryption procedure would be greatly appreciated. Thanks.
cryptoSystem = new RSACryptoSystem(1024);
byte[] expo = Base64InputStream.decode(exponent, 0, exponent.length());
byte[] modul = Base64InputStream.decode(modulus, 0, modulus.length());
byte[] pArr = Base64InputStream.decode(p, 0, p.length());
byte[] qArr = Base64InputStream.decode(q, 0, q.length());
byte[] dpArr = Base64InputStream.decode(dp, 0, dp.length());
byte[] dqArr = Base64InputStream.decode(dq, 0, dq.length());
byte[] inverseQArr = Base64InputStream.decode(inverseQ, 0, inverseQ.length());
byte[] dArr = Base64InputStream.decode(d, 0, d.length());
// Public Key Setup
RSAPublicKey publicKey = new RSAPublicKey( cryptoSystem, expo, modul);
RSAEncryptorEngine eEngine = new RSAEncryptorEngine( publicKey );
fEngine = new PKCS1FormatterEngine(eEngine);
// Private Key Setup
RSAPrivateKey privateKey = new RSAPrivateKey(cryptoSystem, expo, pArr, qArr, dpArr, dqArr, inverseQArr);
dEngine = new RSADecryptorEngine(privateKey);
ufEngine = new PKCS1UnformatterEngine(dEngine);
// ################################ ENCRYPTION ################################
BlockEncryptor cryptoStream = new BlockEncryptor( fEngine, out );
cryptoStream.write( data, 0, data.length );
cryptoStream.close();
out.close();
// ################################ END ENCRYPTION ################################
// Convert encrypted bytes to text;
int finalLength = out.size();
byte[] cipherText = new byte[finalLength];
System.arraycopy(out.getByteArray(), 0, cipherText, 0, finalLength);
cipherText = out.toByteArray();
// ################################ DECRYPTION ################################
ByteArrayInputStream inputStream = new ByteArrayInputStream(cipherText);
byte[] plainText = new byte[finalLength];
BlockDecryptor decryptor = new BlockDecryptor(new PKCS1UnformatterEngine(new RSADecryptorEngine(privateKey)), inputStream);
decryptor.read(plainText, 0, finalLength); // THIS HANGS APP
//IOUtilities.streamToBytes(decryptor); // AND ALSO THIS
String strPlaintText = new String(plainText);
// ################################ END DECRYPTION ################################